Models
Types

Models

Account

Name Value
@@unique
  • provider
  • providerAccountId
@@index
  • provider
  • providerAccountId

Fields

Name Type Attributes Required Comment
access_token String?
  • -
No -
expires_at Int?
  • -
No -
id String
  • @id
  • @default(cuid())
Yes -
id_token String?
  • -
No -
provider String
  • -
Yes -
providerAccountId String
  • -
Yes -
oauth_token String?
  • -
No -
oauth_token_secret String?
  • -
No -
refresh_token String?
  • -
No -
scope String?
  • -
No -
session_state String?
  • -
No -
token_type String?
  • -
No -
type String
  • -
Yes -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one Account

// Get one Account
const account = await prisma.account.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

findFirst

Find first Account

// Get one Account
const account = await prisma.account.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum[] No

Output

Type: Account
Required: No
List: No

findMany

Find zero or more Account

// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum[] No

Output

Type: Account
Required: Yes
List: Yes

create

Create one Account

// Create one Account
const Account = await prisma.account.create({
  data: {
    // ... data to create a Account
  }
})

Input

Name Type Required
data AccountCreateInput | AccountUncheckedCreateInput Yes

Output

Type: Account
Required: Yes
List: No

delete

Delete one Account

// Delete one Account
const Account = await prisma.account.delete({
  where: {
    // ... filter to delete one Account
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

update

Update one Account

// Update one Account
const account = await prisma.account.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateInput | AccountUncheckedUpdateInput Yes
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

deleteMany

Delete zero or more Account

// Delete a few Account
const { count } = await prisma.account.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Account

const { count } = await prisma.account.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput Yes
where AccountWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Account

// Update or create a Account
const account = await prisma.account.upsert({
  create: {
    // ... data to create a Account
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Account we want to update
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes
create AccountCreateInput | AccountUncheckedCreateInput Yes
update AccountUpdateInput | AccountUncheckedUpdateInput Yes

Output

Type: Account
Required: Yes
List: No

Session

Fields

Name Type Attributes Required Comment
expires DateTime
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
sessionToken String
  • @unique
Yes -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one Session

// Get one Session
const session = await prisma.session.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

findFirst

Find first Session

// Get one Session
const session = await prisma.session.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum[] No

Output

Type: Session
Required: No
List: No

findMany

Find zero or more Session

// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum[] No

Output

Type: Session
Required: Yes
List: Yes

create

Create one Session

// Create one Session
const Session = await prisma.session.create({
  data: {
    // ... data to create a Session
  }
})

Input

Name Type Required
data SessionCreateInput | SessionUncheckedCreateInput Yes

Output

Type: Session
Required: Yes
List: No

delete

Delete one Session

// Delete one Session
const Session = await prisma.session.delete({
  where: {
    // ... filter to delete one Session
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

update

Update one Session

// Update one Session
const session = await prisma.session.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateInput | SessionUncheckedUpdateInput Yes
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

deleteMany

Delete zero or more Session

// Delete a few Session
const { count } = await prisma.session.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Session

const { count } = await prisma.session.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput Yes
where SessionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Session

// Update or create a Session
const session = await prisma.session.upsert({
  create: {
    // ... data to create a Session
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Session we want to update
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes
create SessionCreateInput | SessionUncheckedCreateInput Yes
update SessionUpdateInput | SessionUncheckedUpdateInput Yes

Output

Type: Session
Required: Yes
List: No

VerificationToken

Name Value
@@unique
  • identifier
  • token
@@index
  • identifier
  • token

Fields

Name Type Attributes Required Comment
expires DateTime
  • -
Yes -
identifier String
  • -
Yes -
token String
  • @unique
Yes -

Operations

findUnique

Find zero or one VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more VerificationToken

// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one VerificationToken

// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
  data: {
    // ... data to create a VerificationToken
  }
})

Input

Name Type Required
data VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one VerificationToken

// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
  where: {
    // ... filter to delete one VerificationToken
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one VerificationToken

// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more VerificationToken

// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one VerificationToken

const { count } = await prisma.verificationToken.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput Yes
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one VerificationToken

// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
  create: {
    // ... data to create a VerificationToken
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the VerificationToken we want to update
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes
create VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes
update VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes

Output

Required: Yes
List: No

User

Fields

Name Type Attributes Required Comment
accounts Account[]
  • -
Yes -
activities UserActivity[]
  • -
Yes -
chats ChatsOnUsers[]
  • -
Yes -
chatMessages ChatMessage[]
  • -
Yes -
comments Comment[]
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
description String?
  • -
No -
desiredSkills DesiredSkillsOnUsers[]
  • -
Yes -
email String
  • @unique
Yes -
emailVerified DateTime?
  • -
No -
experiences Experience[]
  • -
Yes -
followedBy FollowUser[]
  • -
Yes -
followingSkill FollowSkill[]
  • -
Yes -
followingUser FollowUser[]
  • -
Yes -
friendedBy Friendship[]
  • -
Yes -
friending Friendship[]
  • -
Yes -
id String
  • @id
  • @default(cuid())
Yes -
image String?
  • -
No -
name String
  • @unique
Yes -
posts Post[]
  • -
Yes -
repositories Repository[]
  • -
Yes -
sessions Session[]
  • -
Yes -
skills SkillsOnUsers[]
  • -
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
upvotedComments CommentUpvoter[]
  • -
Yes -
upvotedPosts PostUpvoter[]
  • -
Yes -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

UserActivity

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
comment Comment?
  • -
No -
commentId String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
follow Follow?
  • -
No -
followId String?
  • -
No -
friendship Friendship?
  • -
No -
friendshipId String?
  • -
No -
post Post?
  • -
No -
postId String?
  • -
No -
type UserActivityType
  • -
Yes -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one UserActivity

// Get one UserActivity
const userActivity = await prisma.userActivity.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserActivityWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserActivity

// Get one UserActivity
const userActivity = await prisma.userActivity.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserActivityWhereInput No
orderBy UserActivityOrderByWithRelationInput[] | UserActivityOrderByWithRelationInput No
cursor UserActivityWhereUniqueInput No
take Int No
skip Int No
distinct UserActivityScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more UserActivity

// Get all UserActivity
const UserActivity = await prisma.userActivity.findMany()
// Get first 10 UserActivity
const UserActivity = await prisma.userActivity.findMany({ take: 10 })

Input

Name Type Required
where UserActivityWhereInput No
orderBy UserActivityOrderByWithRelationInput[] | UserActivityOrderByWithRelationInput No
cursor UserActivityWhereUniqueInput No
take Int No
skip Int No
distinct UserActivityScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserActivity

// Create one UserActivity
const UserActivity = await prisma.userActivity.create({
  data: {
    // ... data to create a UserActivity
  }
})

Input

Name Type Required
data UserActivityCreateInput | UserActivityUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserActivity

// Delete one UserActivity
const UserActivity = await prisma.userActivity.delete({
  where: {
    // ... filter to delete one UserActivity
  }
})

Input

Name Type Required
where UserActivityWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserActivity

// Update one UserActivity
const userActivity = await prisma.userActivity.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserActivityUpdateInput | UserActivityUncheckedUpdateInput Yes
where UserActivityWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserActivity

// Delete a few UserActivity
const { count } = await prisma.userActivity.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserActivityWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one UserActivity

const { count } = await prisma.userActivity.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyInput Yes
where UserActivityWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one UserActivity

// Update or create a UserActivity
const userActivity = await prisma.userActivity.upsert({
  create: {
    // ... data to create a UserActivity
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserActivity we want to update
  }
})

Input

Name Type Required
where UserActivityWhereUniqueInput Yes
create UserActivityCreateInput | UserActivityUncheckedCreateInput Yes
update UserActivityUpdateInput | UserActivityUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Friendship

Name Value
@@unique
  • frienderId
  • friendingId
@@index
  • frienderId
  • friendingId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
activities UserActivity[]
  • -
Yes -
friender User
  • -
Yes -
frienderId String
  • -
Yes -
friending User
  • -
Yes -
friendingId String
  • -
Yes -
rejected Boolean
  • @default(false)
Yes -
updatedAt DateTime
  • @updatedAt
Yes -

Operations

findUnique

Find zero or one Friendship

// Get one Friendship
const friendship = await prisma.friendship.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FriendshipWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Friendship

// Get one Friendship
const friendship = await prisma.friendship.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FriendshipWhereInput No
orderBy FriendshipOrderByWithRelationInput[] | FriendshipOrderByWithRelationInput No
cursor FriendshipWhereUniqueInput No
take Int No
skip Int No
distinct FriendshipScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Friendship

// Get all Friendship
const Friendship = await prisma.friendship.findMany()
// Get first 10 Friendship
const Friendship = await prisma.friendship.findMany({ take: 10 })

Input

Name Type Required
where FriendshipWhereInput No
orderBy FriendshipOrderByWithRelationInput[] | FriendshipOrderByWithRelationInput No
cursor FriendshipWhereUniqueInput No
take Int No
skip Int No
distinct FriendshipScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Friendship

// Create one Friendship
const Friendship = await prisma.friendship.create({
  data: {
    // ... data to create a Friendship
  }
})

Input

Name Type Required
data FriendshipCreateInput | FriendshipUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Friendship

// Delete one Friendship
const Friendship = await prisma.friendship.delete({
  where: {
    // ... filter to delete one Friendship
  }
})

Input

Name Type Required
where FriendshipWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Friendship

// Update one Friendship
const friendship = await prisma.friendship.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FriendshipUpdateInput | FriendshipUncheckedUpdateInput Yes
where FriendshipWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Friendship

// Delete a few Friendship
const { count } = await prisma.friendship.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FriendshipWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Friendship

const { count } = await prisma.friendship.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FriendshipUpdateManyMutationInput | FriendshipUncheckedUpdateManyInput Yes
where FriendshipWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Friendship

// Update or create a Friendship
const friendship = await prisma.friendship.upsert({
  create: {
    // ... data to create a Friendship
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Friendship we want to update
  }
})

Input

Name Type Required
where FriendshipWhereUniqueInput Yes
create FriendshipCreateInput | FriendshipUncheckedCreateInput Yes
update FriendshipUpdateInput | FriendshipUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Follow

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
activities UserActivity[]
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
followingSkill FollowSkill?
  • -
No -
followingUser FollowUser?
  • -
No -

Operations

findUnique

Find zero or one Follow

// Get one Follow
const follow = await prisma.follow.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowWhereUniqueInput Yes

Output

Type: Follow
Required: No
List: No

findFirst

Find first Follow

// Get one Follow
const follow = await prisma.follow.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowWhereInput No
orderBy FollowOrderByWithRelationInput[] | FollowOrderByWithRelationInput No
cursor FollowWhereUniqueInput No
take Int No
skip Int No
distinct FollowScalarFieldEnum[] No

Output

Type: Follow
Required: No
List: No

findMany

Find zero or more Follow

// Get all Follow
const Follow = await prisma.follow.findMany()
// Get first 10 Follow
const Follow = await prisma.follow.findMany({ take: 10 })

Input

Name Type Required
where FollowWhereInput No
orderBy FollowOrderByWithRelationInput[] | FollowOrderByWithRelationInput No
cursor FollowWhereUniqueInput No
take Int No
skip Int No
distinct FollowScalarFieldEnum[] No

Output

Type: Follow
Required: Yes
List: Yes

create

Create one Follow

// Create one Follow
const Follow = await prisma.follow.create({
  data: {
    // ... data to create a Follow
  }
})

Input

Name Type Required
data FollowCreateInput | FollowUncheckedCreateInput Yes

Output

Type: Follow
Required: Yes
List: No

delete

Delete one Follow

// Delete one Follow
const Follow = await prisma.follow.delete({
  where: {
    // ... filter to delete one Follow
  }
})

Input

Name Type Required
where FollowWhereUniqueInput Yes

Output

Type: Follow
Required: No
List: No

update

Update one Follow

// Update one Follow
const follow = await prisma.follow.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowUpdateInput | FollowUncheckedUpdateInput Yes
where FollowWhereUniqueInput Yes

Output

Type: Follow
Required: No
List: No

deleteMany

Delete zero or more Follow

// Delete a few Follow
const { count } = await prisma.follow.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Follow

const { count } = await prisma.follow.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowUpdateManyMutationInput | FollowUncheckedUpdateManyInput Yes
where FollowWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Follow

// Update or create a Follow
const follow = await prisma.follow.upsert({
  create: {
    // ... data to create a Follow
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Follow we want to update
  }
})

Input

Name Type Required
where FollowWhereUniqueInput Yes
create FollowCreateInput | FollowUncheckedCreateInput Yes
update FollowUpdateInput | FollowUncheckedUpdateInput Yes

Output

Type: Follow
Required: Yes
List: No

FollowUser

Name Value
@@unique
  • followerId
  • followingId
@@index
  • followerId
  • followingId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
follow Follow
  • -
Yes -
followId String
  • @unique
Yes -
follower User
  • -
Yes -
followerId String
  • -
Yes -
following User
  • -
Yes -
followingId String
  • -
Yes -

Operations

findUnique

Find zero or one FollowUser

// Get one FollowUser
const followUser = await prisma.followUser.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowUserWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first FollowUser

// Get one FollowUser
const followUser = await prisma.followUser.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowUserWhereInput No
orderBy FollowUserOrderByWithRelationInput[] | FollowUserOrderByWithRelationInput No
cursor FollowUserWhereUniqueInput No
take Int No
skip Int No
distinct FollowUserScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more FollowUser

// Get all FollowUser
const FollowUser = await prisma.followUser.findMany()
// Get first 10 FollowUser
const FollowUser = await prisma.followUser.findMany({ take: 10 })

Input

Name Type Required
where FollowUserWhereInput No
orderBy FollowUserOrderByWithRelationInput[] | FollowUserOrderByWithRelationInput No
cursor FollowUserWhereUniqueInput No
take Int No
skip Int No
distinct FollowUserScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one FollowUser

// Create one FollowUser
const FollowUser = await prisma.followUser.create({
  data: {
    // ... data to create a FollowUser
  }
})

Input

Name Type Required
data FollowUserCreateInput | FollowUserUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one FollowUser

// Delete one FollowUser
const FollowUser = await prisma.followUser.delete({
  where: {
    // ... filter to delete one FollowUser
  }
})

Input

Name Type Required
where FollowUserWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one FollowUser

// Update one FollowUser
const followUser = await prisma.followUser.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowUserUpdateInput | FollowUserUncheckedUpdateInput Yes
where FollowUserWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more FollowUser

// Delete a few FollowUser
const { count } = await prisma.followUser.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowUserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one FollowUser

const { count } = await prisma.followUser.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowUserUpdateManyMutationInput | FollowUserUncheckedUpdateManyInput Yes
where FollowUserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one FollowUser

// Update or create a FollowUser
const followUser = await prisma.followUser.upsert({
  create: {
    // ... data to create a FollowUser
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the FollowUser we want to update
  }
})

Input

Name Type Required
where FollowUserWhereUniqueInput Yes
create FollowUserCreateInput | FollowUserUncheckedCreateInput Yes
update FollowUserUpdateInput | FollowUserUncheckedUpdateInput Yes

Output

Required: Yes
List: No

FollowSkill

Name Value
@@unique
  • followerId
  • followingId
@@index
  • followerId
  • followingId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
follow Follow
  • -
Yes -
followId String
  • @unique
Yes -
follower User
  • -
Yes -
followerId String
  • -
Yes -
following Skill
  • -
Yes -
followingId String
  • -
Yes -

Operations

findUnique

Find zero or one FollowSkill

// Get one FollowSkill
const followSkill = await prisma.followSkill.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowSkillWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first FollowSkill

// Get one FollowSkill
const followSkill = await prisma.followSkill.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowSkillWhereInput No
orderBy FollowSkillOrderByWithRelationInput[] | FollowSkillOrderByWithRelationInput No
cursor FollowSkillWhereUniqueInput No
take Int No
skip Int No
distinct FollowSkillScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more FollowSkill

// Get all FollowSkill
const FollowSkill = await prisma.followSkill.findMany()
// Get first 10 FollowSkill
const FollowSkill = await prisma.followSkill.findMany({ take: 10 })

Input

Name Type Required
where FollowSkillWhereInput No
orderBy FollowSkillOrderByWithRelationInput[] | FollowSkillOrderByWithRelationInput No
cursor FollowSkillWhereUniqueInput No
take Int No
skip Int No
distinct FollowSkillScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one FollowSkill

// Create one FollowSkill
const FollowSkill = await prisma.followSkill.create({
  data: {
    // ... data to create a FollowSkill
  }
})

Input

Name Type Required
data FollowSkillCreateInput | FollowSkillUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one FollowSkill

// Delete one FollowSkill
const FollowSkill = await prisma.followSkill.delete({
  where: {
    // ... filter to delete one FollowSkill
  }
})

Input

Name Type Required
where FollowSkillWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one FollowSkill

// Update one FollowSkill
const followSkill = await prisma.followSkill.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowSkillUpdateInput | FollowSkillUncheckedUpdateInput Yes
where FollowSkillWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more FollowSkill

// Delete a few FollowSkill
const { count } = await prisma.followSkill.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowSkillWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one FollowSkill

const { count } = await prisma.followSkill.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowSkillUpdateManyMutationInput | FollowSkillUncheckedUpdateManyInput Yes
where FollowSkillWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one FollowSkill

// Update or create a FollowSkill
const followSkill = await prisma.followSkill.upsert({
  create: {
    // ... data to create a FollowSkill
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the FollowSkill we want to update
  }
})

Input

Name Type Required
where FollowSkillWhereUniqueInput Yes
create FollowSkillCreateInput | FollowSkillUncheckedCreateInput Yes
update FollowSkillUpdateInput | FollowSkillUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Chat

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
messages ChatMessage[]
  • -
Yes -
users ChatsOnUsers[]
  • -
Yes -

Operations

findUnique

Find zero or one Chat

// Get one Chat
const chat = await prisma.chat.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatWhereUniqueInput Yes

Output

Type: Chat
Required: No
List: No

findFirst

Find first Chat

// Get one Chat
const chat = await prisma.chat.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatWhereInput No
orderBy ChatOrderByWithRelationInput[] | ChatOrderByWithRelationInput No
cursor ChatWhereUniqueInput No
take Int No
skip Int No
distinct ChatScalarFieldEnum[] No

Output

Type: Chat
Required: No
List: No

findMany

Find zero or more Chat

// Get all Chat
const Chat = await prisma.chat.findMany()
// Get first 10 Chat
const Chat = await prisma.chat.findMany({ take: 10 })

Input

Name Type Required
where ChatWhereInput No
orderBy ChatOrderByWithRelationInput[] | ChatOrderByWithRelationInput No
cursor ChatWhereUniqueInput No
take Int No
skip Int No
distinct ChatScalarFieldEnum[] No

Output

Type: Chat
Required: Yes
List: Yes

create

Create one Chat

// Create one Chat
const Chat = await prisma.chat.create({
  data: {
    // ... data to create a Chat
  }
})

Input

Name Type Required
data ChatCreateInput | ChatUncheckedCreateInput Yes

Output

Type: Chat
Required: Yes
List: No

delete

Delete one Chat

// Delete one Chat
const Chat = await prisma.chat.delete({
  where: {
    // ... filter to delete one Chat
  }
})

Input

Name Type Required
where ChatWhereUniqueInput Yes

Output

Type: Chat
Required: No
List: No

update

Update one Chat

// Update one Chat
const chat = await prisma.chat.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatUpdateInput | ChatUncheckedUpdateInput Yes
where ChatWhereUniqueInput Yes

Output

Type: Chat
Required: No
List: No

deleteMany

Delete zero or more Chat

// Delete a few Chat
const { count } = await prisma.chat.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Chat

const { count } = await prisma.chat.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatUpdateManyMutationInput | ChatUncheckedUpdateManyInput Yes
where ChatWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Chat

// Update or create a Chat
const chat = await prisma.chat.upsert({
  create: {
    // ... data to create a Chat
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Chat we want to update
  }
})

Input

Name Type Required
where ChatWhereUniqueInput Yes
create ChatCreateInput | ChatUncheckedCreateInput Yes
update ChatUpdateInput | ChatUncheckedUpdateInput Yes

Output

Type: Chat
Required: Yes
List: No

ChatMessage

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
chat Chat
  • -
Yes -
chatId String
  • -
Yes -
content Json
  • -
Yes -
sender User
  • -
Yes -
senderId String
  • -
Yes -

Operations

findUnique

Find zero or one ChatMessage

// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatMessageWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ChatMessage

// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatMessageWhereInput No
orderBy ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput No
cursor ChatMessageWhereUniqueInput No
take Int No
skip Int No
distinct ChatMessageScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ChatMessage

// Get all ChatMessage
const ChatMessage = await prisma.chatMessage.findMany()
// Get first 10 ChatMessage
const ChatMessage = await prisma.chatMessage.findMany({ take: 10 })

Input

Name Type Required
where ChatMessageWhereInput No
orderBy ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput No
cursor ChatMessageWhereUniqueInput No
take Int No
skip Int No
distinct ChatMessageScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ChatMessage

// Create one ChatMessage
const ChatMessage = await prisma.chatMessage.create({
  data: {
    // ... data to create a ChatMessage
  }
})

Input

Name Type Required
data ChatMessageCreateInput | ChatMessageUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ChatMessage

// Delete one ChatMessage
const ChatMessage = await prisma.chatMessage.delete({
  where: {
    // ... filter to delete one ChatMessage
  }
})

Input

Name Type Required
where ChatMessageWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ChatMessage

// Update one ChatMessage
const chatMessage = await prisma.chatMessage.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput Yes
where ChatMessageWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ChatMessage

// Delete a few ChatMessage
const { count } = await prisma.chatMessage.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatMessageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ChatMessage

const { count } = await prisma.chatMessage.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyInput Yes
where ChatMessageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ChatMessage

// Update or create a ChatMessage
const chatMessage = await prisma.chatMessage.upsert({
  create: {
    // ... data to create a ChatMessage
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ChatMessage we want to update
  }
})

Input

Name Type Required
where ChatMessageWhereUniqueInput Yes
create ChatMessageCreateInput | ChatMessageUncheckedCreateInput Yes
update ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ChatsOnUsers

Name Value
@@unique
  • chatId
  • userId
@@index
  • chatId
  • userId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
chat Chat
  • -
Yes -
chatId String
  • -
Yes -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one ChatsOnUsers

// Get one ChatsOnUsers
const chatsOnUsers = await prisma.chatsOnUsers.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ChatsOnUsers

// Get one ChatsOnUsers
const chatsOnUsers = await prisma.chatsOnUsers.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatsOnUsersWhereInput No
orderBy ChatsOnUsersOrderByWithRelationInput[] | ChatsOnUsersOrderByWithRelationInput No
cursor ChatsOnUsersWhereUniqueInput No
take Int No
skip Int No
distinct ChatsOnUsersScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ChatsOnUsers

// Get all ChatsOnUsers
const ChatsOnUsers = await prisma.chatsOnUsers.findMany()
// Get first 10 ChatsOnUsers
const ChatsOnUsers = await prisma.chatsOnUsers.findMany({ take: 10 })

Input

Name Type Required
where ChatsOnUsersWhereInput No
orderBy ChatsOnUsersOrderByWithRelationInput[] | ChatsOnUsersOrderByWithRelationInput No
cursor ChatsOnUsersWhereUniqueInput No
take Int No
skip Int No
distinct ChatsOnUsersScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ChatsOnUsers

// Create one ChatsOnUsers
const ChatsOnUsers = await prisma.chatsOnUsers.create({
  data: {
    // ... data to create a ChatsOnUsers
  }
})

Input

Name Type Required
data ChatsOnUsersCreateInput | ChatsOnUsersUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ChatsOnUsers

// Delete one ChatsOnUsers
const ChatsOnUsers = await prisma.chatsOnUsers.delete({
  where: {
    // ... filter to delete one ChatsOnUsers
  }
})

Input

Name Type Required
where ChatsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ChatsOnUsers

// Update one ChatsOnUsers
const chatsOnUsers = await prisma.chatsOnUsers.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatsOnUsersUpdateInput | ChatsOnUsersUncheckedUpdateInput Yes
where ChatsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ChatsOnUsers

// Delete a few ChatsOnUsers
const { count } = await prisma.chatsOnUsers.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatsOnUsersWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ChatsOnUsers

const { count } = await prisma.chatsOnUsers.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatsOnUsersUpdateManyMutationInput | ChatsOnUsersUncheckedUpdateManyInput Yes
where ChatsOnUsersWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ChatsOnUsers

// Update or create a ChatsOnUsers
const chatsOnUsers = await prisma.chatsOnUsers.upsert({
  create: {
    // ... data to create a ChatsOnUsers
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ChatsOnUsers we want to update
  }
})

Input

Name Type Required
where ChatsOnUsersWhereUniqueInput Yes
create ChatsOnUsersCreateInput | ChatsOnUsersUncheckedCreateInput Yes
update ChatsOnUsersUpdateInput | ChatsOnUsersUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Post

Name Value
@@unique
  • authorName
  • urlSlug
@@index
  • authorName
  • urlSlug

Fields

Name Type Attributes Required Comment
activities UserActivity[]
  • -
Yes -
author User
  • -
Yes -
authorName String
  • -
Yes -
comments Comment[]
  • -
Yes -
content Json?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
description String?
  • -
No -
id String
  • @id
  • @default(cuid())
Yes -
images PostImage[]
  • -
Yes -
publishedAt DateTime?
  • -
No -
readTime Int?
  • -
No -
skills SkillsOnPosts[]
  • -
Yes -
title String?
  • -
No -
thumbnailUrl String?
  • -
No -
updatedAt DateTime
  • @updatedAt
Yes -
upvoters PostUpvoter[]
  • -
Yes -
urlSlug String
  • @default(draft)
Yes -

Operations

findUnique

Find zero or one Post

// Get one Post
const post = await prisma.post.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostWhereUniqueInput Yes

Output

Type: Post
Required: No
List: No

findFirst

Find first Post

// Get one Post
const post = await prisma.post.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostWhereInput No
orderBy PostOrderByWithRelationInput[] | PostOrderByWithRelationInput No
cursor PostWhereUniqueInput No
take Int No
skip Int No
distinct PostScalarFieldEnum[] No

Output

Type: Post
Required: No
List: No

findMany

Find zero or more Post

// Get all Post
const Post = await prisma.post.findMany()
// Get first 10 Post
const Post = await prisma.post.findMany({ take: 10 })

Input

Name Type Required
where PostWhereInput No
orderBy PostOrderByWithRelationInput[] | PostOrderByWithRelationInput No
cursor PostWhereUniqueInput No
take Int No
skip Int No
distinct PostScalarFieldEnum[] No

Output

Type: Post
Required: Yes
List: Yes

create

Create one Post

// Create one Post
const Post = await prisma.post.create({
  data: {
    // ... data to create a Post
  }
})

Input

Name Type Required
data PostCreateInput | PostUncheckedCreateInput Yes

Output

Type: Post
Required: Yes
List: No

delete

Delete one Post

// Delete one Post
const Post = await prisma.post.delete({
  where: {
    // ... filter to delete one Post
  }
})

Input

Name Type Required
where PostWhereUniqueInput Yes

Output

Type: Post
Required: No
List: No

update

Update one Post

// Update one Post
const post = await prisma.post.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PostUpdateInput | PostUncheckedUpdateInput Yes
where PostWhereUniqueInput Yes

Output

Type: Post
Required: No
List: No

deleteMany

Delete zero or more Post

// Delete a few Post
const { count } = await prisma.post.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Post

const { count } = await prisma.post.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PostUpdateManyMutationInput | PostUncheckedUpdateManyInput Yes
where PostWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Post

// Update or create a Post
const post = await prisma.post.upsert({
  create: {
    // ... data to create a Post
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Post we want to update
  }
})

Input

Name Type Required
where PostWhereUniqueInput Yes
create PostCreateInput | PostUncheckedCreateInput Yes
update PostUpdateInput | PostUncheckedUpdateInput Yes

Output

Type: Post
Required: Yes
List: No

PostUpvoter

Name Value
@@unique
  • userId
  • postId
@@index
  • userId
  • postId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
post Post
  • -
Yes -
postId String
  • -
Yes -
upvote Boolean
  • @default(true)
Yes -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one PostUpvoter

// Get one PostUpvoter
const postUpvoter = await prisma.postUpvoter.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostUpvoterWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PostUpvoter

// Get one PostUpvoter
const postUpvoter = await prisma.postUpvoter.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostUpvoterWhereInput No
orderBy PostUpvoterOrderByWithRelationInput[] | PostUpvoterOrderByWithRelationInput No
cursor PostUpvoterWhereUniqueInput No
take Int No
skip Int No
distinct PostUpvoterScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PostUpvoter

// Get all PostUpvoter
const PostUpvoter = await prisma.postUpvoter.findMany()
// Get first 10 PostUpvoter
const PostUpvoter = await prisma.postUpvoter.findMany({ take: 10 })

Input

Name Type Required
where PostUpvoterWhereInput No
orderBy PostUpvoterOrderByWithRelationInput[] | PostUpvoterOrderByWithRelationInput No
cursor PostUpvoterWhereUniqueInput No
take Int No
skip Int No
distinct PostUpvoterScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PostUpvoter

// Create one PostUpvoter
const PostUpvoter = await prisma.postUpvoter.create({
  data: {
    // ... data to create a PostUpvoter
  }
})

Input

Name Type Required
data PostUpvoterCreateInput | PostUpvoterUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PostUpvoter

// Delete one PostUpvoter
const PostUpvoter = await prisma.postUpvoter.delete({
  where: {
    // ... filter to delete one PostUpvoter
  }
})

Input

Name Type Required
where PostUpvoterWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PostUpvoter

// Update one PostUpvoter
const postUpvoter = await prisma.postUpvoter.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PostUpvoterUpdateInput | PostUpvoterUncheckedUpdateInput Yes
where PostUpvoterWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PostUpvoter

// Delete a few PostUpvoter
const { count } = await prisma.postUpvoter.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostUpvoterWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PostUpvoter

const { count } = await prisma.postUpvoter.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PostUpvoterUpdateManyMutationInput | PostUpvoterUncheckedUpdateManyInput Yes
where PostUpvoterWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PostUpvoter

// Update or create a PostUpvoter
const postUpvoter = await prisma.postUpvoter.upsert({
  create: {
    // ... data to create a PostUpvoter
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PostUpvoter we want to update
  }
})

Input

Name Type Required
where PostUpvoterWhereUniqueInput Yes
create PostUpvoterCreateInput | PostUpvoterUncheckedCreateInput Yes
update PostUpvoterUpdateInput | PostUpvoterUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PostImage

Fields

Name Type Attributes Required Comment
id String
  • @id
Yes -
post Post
  • -
Yes -
postId String
  • -
Yes -
url String
  • @unique
Yes -
createdAt DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one PostImage

// Get one PostImage
const postImage = await prisma.postImage.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostImageWhereUniqueInput Yes

Output

Type: PostImage
Required: No
List: No

findFirst

Find first PostImage

// Get one PostImage
const postImage = await prisma.postImage.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostImageWhereInput No
orderBy PostImageOrderByWithRelationInput[] | PostImageOrderByWithRelationInput No
cursor PostImageWhereUniqueInput No
take Int No
skip Int No
distinct PostImageScalarFieldEnum[] No

Output

Type: PostImage
Required: No
List: No

findMany

Find zero or more PostImage

// Get all PostImage
const PostImage = await prisma.postImage.findMany()
// Get first 10 PostImage
const PostImage = await prisma.postImage.findMany({ take: 10 })

Input

Name Type Required
where PostImageWhereInput No
orderBy PostImageOrderByWithRelationInput[] | PostImageOrderByWithRelationInput No
cursor PostImageWhereUniqueInput No
take Int No
skip Int No
distinct PostImageScalarFieldEnum[] No

Output

Type: PostImage
Required: Yes
List: Yes

create

Create one PostImage

// Create one PostImage
const PostImage = await prisma.postImage.create({
  data: {
    // ... data to create a PostImage
  }
})

Input

Name Type Required
data PostImageCreateInput | PostImageUncheckedCreateInput Yes

Output

Type: PostImage
Required: Yes
List: No

delete

Delete one PostImage

// Delete one PostImage
const PostImage = await prisma.postImage.delete({
  where: {
    // ... filter to delete one PostImage
  }
})

Input

Name Type Required
where PostImageWhereUniqueInput Yes

Output

Type: PostImage
Required: No
List: No

update

Update one PostImage

// Update one PostImage
const postImage = await prisma.postImage.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PostImageUpdateInput | PostImageUncheckedUpdateInput Yes
where PostImageWhereUniqueInput Yes

Output

Type: PostImage
Required: No
List: No

deleteMany

Delete zero or more PostImage

// Delete a few PostImage
const { count } = await prisma.postImage.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostImageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PostImage

const { count } = await prisma.postImage.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PostImageUpdateManyMutationInput | PostImageUncheckedUpdateManyInput Yes
where PostImageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PostImage

// Update or create a PostImage
const postImage = await prisma.postImage.upsert({
  create: {
    // ... data to create a PostImage
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PostImage we want to update
  }
})

Input

Name Type Required
where PostImageWhereUniqueInput Yes
create PostImageCreateInput | PostImageUncheckedCreateInput Yes
update PostImageUpdateInput | PostImageUncheckedUpdateInput Yes

Output

Type: PostImage
Required: Yes
List: No

Comment

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
activities UserActivity[]
  • -
Yes -
author User
  • -
Yes -
authorId String
  • -
Yes -
content Json?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
parent Comment?
  • -
No -
parentId String?
  • -
No -
post Post?
  • -
No -
postId String?
  • -
No -
replies Comment[]
  • -
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
upvoters CommentUpvoter[]
  • -
Yes -

Operations

findUnique

Find zero or one Comment

// Get one Comment
const comment = await prisma.comment.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentWhereUniqueInput Yes

Output

Type: Comment
Required: No
List: No

findFirst

Find first Comment

// Get one Comment
const comment = await prisma.comment.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentWhereInput No
orderBy CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput No
cursor CommentWhereUniqueInput No
take Int No
skip Int No
distinct CommentScalarFieldEnum[] No

Output

Type: Comment
Required: No
List: No

findMany

Find zero or more Comment

// Get all Comment
const Comment = await prisma.comment.findMany()
// Get first 10 Comment
const Comment = await prisma.comment.findMany({ take: 10 })

Input

Name Type Required
where CommentWhereInput No
orderBy CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput No
cursor CommentWhereUniqueInput No
take Int No
skip Int No
distinct CommentScalarFieldEnum[] No

Output

Type: Comment
Required: Yes
List: Yes

create

Create one Comment

// Create one Comment
const Comment = await prisma.comment.create({
  data: {
    // ... data to create a Comment
  }
})

Input

Name Type Required
data CommentCreateInput | CommentUncheckedCreateInput Yes

Output

Type: Comment
Required: Yes
List: No

delete

Delete one Comment

// Delete one Comment
const Comment = await prisma.comment.delete({
  where: {
    // ... filter to delete one Comment
  }
})

Input

Name Type Required
where CommentWhereUniqueInput Yes

Output

Type: Comment
Required: No
List: No

update

Update one Comment

// Update one Comment
const comment = await prisma.comment.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommentUpdateInput | CommentUncheckedUpdateInput Yes
where CommentWhereUniqueInput Yes

Output

Type: Comment
Required: No
List: No

deleteMany

Delete zero or more Comment

// Delete a few Comment
const { count } = await prisma.comment.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Comment

const { count } = await prisma.comment.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommentUpdateManyMutationInput | CommentUncheckedUpdateManyInput Yes
where CommentWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Comment

// Update or create a Comment
const comment = await prisma.comment.upsert({
  create: {
    // ... data to create a Comment
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Comment we want to update
  }
})

Input

Name Type Required
where CommentWhereUniqueInput Yes
create CommentCreateInput | CommentUncheckedCreateInput Yes
update CommentUpdateInput | CommentUncheckedUpdateInput Yes

Output

Type: Comment
Required: Yes
List: No

CommentUpvoter

Name Value
@@unique
  • commentId
  • userId
@@index
  • commentId
  • userId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
comment Comment
  • -
Yes -
commentId String
  • -
Yes -
upvote Boolean
  • @default(true)
Yes -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one CommentUpvoter

// Get one CommentUpvoter
const commentUpvoter = await prisma.commentUpvoter.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentUpvoterWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first CommentUpvoter

// Get one CommentUpvoter
const commentUpvoter = await prisma.commentUpvoter.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentUpvoterWhereInput No
orderBy CommentUpvoterOrderByWithRelationInput[] | CommentUpvoterOrderByWithRelationInput No
cursor CommentUpvoterWhereUniqueInput No
take Int No
skip Int No
distinct CommentUpvoterScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more CommentUpvoter

// Get all CommentUpvoter
const CommentUpvoter = await prisma.commentUpvoter.findMany()
// Get first 10 CommentUpvoter
const CommentUpvoter = await prisma.commentUpvoter.findMany({ take: 10 })

Input

Name Type Required
where CommentUpvoterWhereInput No
orderBy CommentUpvoterOrderByWithRelationInput[] | CommentUpvoterOrderByWithRelationInput No
cursor CommentUpvoterWhereUniqueInput No
take Int No
skip Int No
distinct CommentUpvoterScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one CommentUpvoter

// Create one CommentUpvoter
const CommentUpvoter = await prisma.commentUpvoter.create({
  data: {
    // ... data to create a CommentUpvoter
  }
})

Input

Name Type Required
data CommentUpvoterCreateInput | CommentUpvoterUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one CommentUpvoter

// Delete one CommentUpvoter
const CommentUpvoter = await prisma.commentUpvoter.delete({
  where: {
    // ... filter to delete one CommentUpvoter
  }
})

Input

Name Type Required
where CommentUpvoterWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one CommentUpvoter

// Update one CommentUpvoter
const commentUpvoter = await prisma.commentUpvoter.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommentUpvoterUpdateInput | CommentUpvoterUncheckedUpdateInput Yes
where CommentUpvoterWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more CommentUpvoter

// Delete a few CommentUpvoter
const { count } = await prisma.commentUpvoter.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentUpvoterWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one CommentUpvoter

const { count } = await prisma.commentUpvoter.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommentUpvoterUpdateManyMutationInput | CommentUpvoterUncheckedUpdateManyInput Yes
where CommentUpvoterWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one CommentUpvoter

// Update or create a CommentUpvoter
const commentUpvoter = await prisma.commentUpvoter.upsert({
  create: {
    // ... data to create a CommentUpvoter
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the CommentUpvoter we want to update
  }
})

Input

Name Type Required
where CommentUpvoterWhereUniqueInput Yes
create CommentUpvoterCreateInput | CommentUpvoterUncheckedCreateInput Yes
update CommentUpvoterUpdateInput | CommentUpvoterUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Skill

Name Value
@@unique
  • name
  • owner
@@index
  • name
  • owner

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
name String
  • -
Yes -
owner String
  • -
Yes -
users SkillsOnUsers[]
  • -
Yes -
desiringUsers DesiredSkillsOnUsers[]
  • -
Yes -
posts SkillsOnPosts[]
  • -
Yes -
repositories SkillsOnRepositories[]
  • -
Yes -
followedBy FollowSkill[]
  • -
Yes -

Operations

findUnique

Find zero or one Skill

// Get one Skill
const skill = await prisma.skill.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillWhereUniqueInput Yes

Output

Type: Skill
Required: No
List: No

findFirst

Find first Skill

// Get one Skill
const skill = await prisma.skill.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillWhereInput No
orderBy SkillOrderByWithRelationInput[] | SkillOrderByWithRelationInput No
cursor SkillWhereUniqueInput No
take Int No
skip Int No
distinct SkillScalarFieldEnum[] No

Output

Type: Skill
Required: No
List: No

findMany

Find zero or more Skill

// Get all Skill
const Skill = await prisma.skill.findMany()
// Get first 10 Skill
const Skill = await prisma.skill.findMany({ take: 10 })

Input

Name Type Required
where SkillWhereInput No
orderBy SkillOrderByWithRelationInput[] | SkillOrderByWithRelationInput No
cursor SkillWhereUniqueInput No
take Int No
skip Int No
distinct SkillScalarFieldEnum[] No

Output

Type: Skill
Required: Yes
List: Yes

create

Create one Skill

// Create one Skill
const Skill = await prisma.skill.create({
  data: {
    // ... data to create a Skill
  }
})

Input

Name Type Required
data SkillCreateInput | SkillUncheckedCreateInput Yes

Output

Type: Skill
Required: Yes
List: No

delete

Delete one Skill

// Delete one Skill
const Skill = await prisma.skill.delete({
  where: {
    // ... filter to delete one Skill
  }
})

Input

Name Type Required
where SkillWhereUniqueInput Yes

Output

Type: Skill
Required: No
List: No

update

Update one Skill

// Update one Skill
const skill = await prisma.skill.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SkillUpdateInput | SkillUncheckedUpdateInput Yes
where SkillWhereUniqueInput Yes

Output

Type: Skill
Required: No
List: No

deleteMany

Delete zero or more Skill

// Delete a few Skill
const { count } = await prisma.skill.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Skill

const { count } = await prisma.skill.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SkillUpdateManyMutationInput | SkillUncheckedUpdateManyInput Yes
where SkillWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Skill

// Update or create a Skill
const skill = await prisma.skill.upsert({
  create: {
    // ... data to create a Skill
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Skill we want to update
  }
})

Input

Name Type Required
where SkillWhereUniqueInput Yes
create SkillCreateInput | SkillUncheckedCreateInput Yes
update SkillUpdateInput | SkillUncheckedUpdateInput Yes

Output

Type: Skill
Required: Yes
List: No

SkillsOnPosts

Name Value
@@unique
  • skillId
  • postId
@@index
  • skillId
  • postId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
post Post
  • -
Yes -
postId String
  • -
Yes -
skill Skill
  • -
Yes -
skillId String
  • -
Yes -

Operations

findUnique

Find zero or one SkillsOnPosts

// Get one SkillsOnPosts
const skillsOnPosts = await prisma.skillsOnPosts.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnPostsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first SkillsOnPosts

// Get one SkillsOnPosts
const skillsOnPosts = await prisma.skillsOnPosts.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnPostsWhereInput No
orderBy SkillsOnPostsOrderByWithRelationInput[] | SkillsOnPostsOrderByWithRelationInput No
cursor SkillsOnPostsWhereUniqueInput No
take Int No
skip Int No
distinct SkillsOnPostsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more SkillsOnPosts

// Get all SkillsOnPosts
const SkillsOnPosts = await prisma.skillsOnPosts.findMany()
// Get first 10 SkillsOnPosts
const SkillsOnPosts = await prisma.skillsOnPosts.findMany({ take: 10 })

Input

Name Type Required
where SkillsOnPostsWhereInput No
orderBy SkillsOnPostsOrderByWithRelationInput[] | SkillsOnPostsOrderByWithRelationInput No
cursor SkillsOnPostsWhereUniqueInput No
take Int No
skip Int No
distinct SkillsOnPostsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one SkillsOnPosts

// Create one SkillsOnPosts
const SkillsOnPosts = await prisma.skillsOnPosts.create({
  data: {
    // ... data to create a SkillsOnPosts
  }
})

Input

Name Type Required
data SkillsOnPostsCreateInput | SkillsOnPostsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one SkillsOnPosts

// Delete one SkillsOnPosts
const SkillsOnPosts = await prisma.skillsOnPosts.delete({
  where: {
    // ... filter to delete one SkillsOnPosts
  }
})

Input

Name Type Required
where SkillsOnPostsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one SkillsOnPosts

// Update one SkillsOnPosts
const skillsOnPosts = await prisma.skillsOnPosts.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SkillsOnPostsUpdateInput | SkillsOnPostsUncheckedUpdateInput Yes
where SkillsOnPostsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more SkillsOnPosts

// Delete a few SkillsOnPosts
const { count } = await prisma.skillsOnPosts.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnPostsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one SkillsOnPosts

const { count } = await prisma.skillsOnPosts.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SkillsOnPostsUpdateManyMutationInput | SkillsOnPostsUncheckedUpdateManyInput Yes
where SkillsOnPostsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one SkillsOnPosts

// Update or create a SkillsOnPosts
const skillsOnPosts = await prisma.skillsOnPosts.upsert({
  create: {
    // ... data to create a SkillsOnPosts
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SkillsOnPosts we want to update
  }
})

Input

Name Type Required
where SkillsOnPostsWhereUniqueInput Yes
create SkillsOnPostsCreateInput | SkillsOnPostsUncheckedCreateInput Yes
update SkillsOnPostsUpdateInput | SkillsOnPostsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

SkillsOnUsers

Name Value
@@unique
  • skillId
  • userId
@@index
  • skillId
  • userId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
skill Skill
  • -
Yes -
skillId String
  • -
Yes -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one SkillsOnUsers

// Get one SkillsOnUsers
const skillsOnUsers = await prisma.skillsOnUsers.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first SkillsOnUsers

// Get one SkillsOnUsers
const skillsOnUsers = await prisma.skillsOnUsers.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnUsersWhereInput No
orderBy SkillsOnUsersOrderByWithRelationInput[] | SkillsOnUsersOrderByWithRelationInput No
cursor SkillsOnUsersWhereUniqueInput No
take Int No
skip Int No
distinct SkillsOnUsersScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more SkillsOnUsers

// Get all SkillsOnUsers
const SkillsOnUsers = await prisma.skillsOnUsers.findMany()
// Get first 10 SkillsOnUsers
const SkillsOnUsers = await prisma.skillsOnUsers.findMany({ take: 10 })

Input

Name Type Required
where SkillsOnUsersWhereInput No
orderBy SkillsOnUsersOrderByWithRelationInput[] | SkillsOnUsersOrderByWithRelationInput No
cursor SkillsOnUsersWhereUniqueInput No
take Int No
skip Int No
distinct SkillsOnUsersScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one SkillsOnUsers

// Create one SkillsOnUsers
const SkillsOnUsers = await prisma.skillsOnUsers.create({
  data: {
    // ... data to create a SkillsOnUsers
  }
})

Input

Name Type Required
data SkillsOnUsersCreateInput | SkillsOnUsersUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one SkillsOnUsers

// Delete one SkillsOnUsers
const SkillsOnUsers = await prisma.skillsOnUsers.delete({
  where: {
    // ... filter to delete one SkillsOnUsers
  }
})

Input

Name Type Required
where SkillsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one SkillsOnUsers

// Update one SkillsOnUsers
const skillsOnUsers = await prisma.skillsOnUsers.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SkillsOnUsersUpdateInput | SkillsOnUsersUncheckedUpdateInput Yes
where SkillsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more SkillsOnUsers

// Delete a few SkillsOnUsers
const { count } = await prisma.skillsOnUsers.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnUsersWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one SkillsOnUsers

const { count } = await prisma.skillsOnUsers.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SkillsOnUsersUpdateManyMutationInput | SkillsOnUsersUncheckedUpdateManyInput Yes
where SkillsOnUsersWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one SkillsOnUsers

// Update or create a SkillsOnUsers
const skillsOnUsers = await prisma.skillsOnUsers.upsert({
  create: {
    // ... data to create a SkillsOnUsers
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SkillsOnUsers we want to update
  }
})

Input

Name Type Required
where SkillsOnUsersWhereUniqueInput Yes
create SkillsOnUsersCreateInput | SkillsOnUsersUncheckedCreateInput Yes
update SkillsOnUsersUpdateInput | SkillsOnUsersUncheckedUpdateInput Yes

Output

Required: Yes
List: No

DesiredSkillsOnUsers

Name Value
@@unique
  • skillId
  • userId
@@index
  • skillId
  • userId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
skill Skill
  • -
Yes -
skillId String
  • -
Yes -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one DesiredSkillsOnUsers

// Get one DesiredSkillsOnUsers
const desiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiredSkillsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first DesiredSkillsOnUsers

// Get one DesiredSkillsOnUsers
const desiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiredSkillsOnUsersWhereInput No
orderBy DesiredSkillsOnUsersOrderByWithRelationInput[] | DesiredSkillsOnUsersOrderByWithRelationInput No
cursor DesiredSkillsOnUsersWhereUniqueInput No
take Int No
skip Int No
distinct DesiredSkillsOnUsersScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more DesiredSkillsOnUsers

// Get all DesiredSkillsOnUsers
const DesiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.findMany()
// Get first 10 DesiredSkillsOnUsers
const DesiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.findMany({ take: 10 })

Input

Name Type Required
where DesiredSkillsOnUsersWhereInput No
orderBy DesiredSkillsOnUsersOrderByWithRelationInput[] | DesiredSkillsOnUsersOrderByWithRelationInput No
cursor DesiredSkillsOnUsersWhereUniqueInput No
take Int No
skip Int No
distinct DesiredSkillsOnUsersScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one DesiredSkillsOnUsers

// Create one DesiredSkillsOnUsers
const DesiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.create({
  data: {
    // ... data to create a DesiredSkillsOnUsers
  }
})

Input

Name Type Required
data DesiredSkillsOnUsersCreateInput | DesiredSkillsOnUsersUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one DesiredSkillsOnUsers

// Delete one DesiredSkillsOnUsers
const DesiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.delete({
  where: {
    // ... filter to delete one DesiredSkillsOnUsers
  }
})

Input

Name Type Required
where DesiredSkillsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one DesiredSkillsOnUsers

// Update one DesiredSkillsOnUsers
const desiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DesiredSkillsOnUsersUpdateInput | DesiredSkillsOnUsersUncheckedUpdateInput Yes
where DesiredSkillsOnUsersWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more DesiredSkillsOnUsers

// Delete a few DesiredSkillsOnUsers
const { count } = await prisma.desiredSkillsOnUsers.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DesiredSkillsOnUsersWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one DesiredSkillsOnUsers

const { count } = await prisma.desiredSkillsOnUsers.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DesiredSkillsOnUsersUpdateManyMutationInput | DesiredSkillsOnUsersUncheckedUpdateManyInput Yes
where DesiredSkillsOnUsersWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one DesiredSkillsOnUsers

// Update or create a DesiredSkillsOnUsers
const desiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.upsert({
  create: {
    // ... data to create a DesiredSkillsOnUsers
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the DesiredSkillsOnUsers we want to update
  }
})

Input

Name Type Required
where DesiredSkillsOnUsersWhereUniqueInput Yes
create DesiredSkillsOnUsersCreateInput | DesiredSkillsOnUsersUncheckedCreateInput Yes
update DesiredSkillsOnUsersUpdateInput | DesiredSkillsOnUsersUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Repository

Name Value
@@unique
  • name
  • owner
@@index
  • name
  • owner

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
name String
  • -
Yes -
skills SkillsOnRepositories[]
  • -
Yes -
user User
  • -
Yes -
owner String
  • -
Yes -

Operations

findUnique

Find zero or one Repository

// Get one Repository
const repository = await prisma.repository.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RepositoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Repository

// Get one Repository
const repository = await prisma.repository.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RepositoryWhereInput No
orderBy RepositoryOrderByWithRelationInput[] | RepositoryOrderByWithRelationInput No
cursor RepositoryWhereUniqueInput No
take Int No
skip Int No
distinct RepositoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Repository

// Get all Repository
const Repository = await prisma.repository.findMany()
// Get first 10 Repository
const Repository = await prisma.repository.findMany({ take: 10 })

Input

Name Type Required
where RepositoryWhereInput No
orderBy RepositoryOrderByWithRelationInput[] | RepositoryOrderByWithRelationInput No
cursor RepositoryWhereUniqueInput No
take Int No
skip Int No
distinct RepositoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Repository

// Create one Repository
const Repository = await prisma.repository.create({
  data: {
    // ... data to create a Repository
  }
})

Input

Name Type Required
data RepositoryCreateInput | RepositoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Repository

// Delete one Repository
const Repository = await prisma.repository.delete({
  where: {
    // ... filter to delete one Repository
  }
})

Input

Name Type Required
where RepositoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Repository

// Update one Repository
const repository = await prisma.repository.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RepositoryUpdateInput | RepositoryUncheckedUpdateInput Yes
where RepositoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Repository

// Delete a few Repository
const { count } = await prisma.repository.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RepositoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Repository

const { count } = await prisma.repository.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RepositoryUpdateManyMutationInput | RepositoryUncheckedUpdateManyInput Yes
where RepositoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Repository

// Update or create a Repository
const repository = await prisma.repository.upsert({
  create: {
    // ... data to create a Repository
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Repository we want to update
  }
})

Input

Name Type Required
where RepositoryWhereUniqueInput Yes
create RepositoryCreateInput | RepositoryUncheckedCreateInput Yes
update RepositoryUpdateInput | RepositoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

SkillsOnRepositories

Name Value
@@unique
  • skillId
  • repositoryId
@@index
  • skillId
  • repositoryId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
skill Skill
  • -
Yes -
skillId String
  • -
Yes -
repository Repository
  • -
Yes -
repositoryId String
  • -
Yes -

Operations

findUnique

Find zero or one SkillsOnRepositories

// Get one SkillsOnRepositories
const skillsOnRepositories = await prisma.skillsOnRepositories.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnRepositoriesWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first SkillsOnRepositories

// Get one SkillsOnRepositories
const skillsOnRepositories = await prisma.skillsOnRepositories.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnRepositoriesWhereInput No
orderBy SkillsOnRepositoriesOrderByWithRelationInput[] | SkillsOnRepositoriesOrderByWithRelationInput No
cursor SkillsOnRepositoriesWhereUniqueInput No
take Int No
skip Int No
distinct SkillsOnRepositoriesScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more SkillsOnRepositories

// Get all SkillsOnRepositories
const SkillsOnRepositories = await prisma.skillsOnRepositories.findMany()
// Get first 10 SkillsOnRepositories
const SkillsOnRepositories = await prisma.skillsOnRepositories.findMany({ take: 10 })

Input

Name Type Required
where SkillsOnRepositoriesWhereInput No
orderBy SkillsOnRepositoriesOrderByWithRelationInput[] | SkillsOnRepositoriesOrderByWithRelationInput No
cursor SkillsOnRepositoriesWhereUniqueInput No
take Int No
skip Int No
distinct SkillsOnRepositoriesScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one SkillsOnRepositories

// Create one SkillsOnRepositories
const SkillsOnRepositories = await prisma.skillsOnRepositories.create({
  data: {
    // ... data to create a SkillsOnRepositories
  }
})

Input

Name Type Required
data SkillsOnRepositoriesCreateInput | SkillsOnRepositoriesUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one SkillsOnRepositories

// Delete one SkillsOnRepositories
const SkillsOnRepositories = await prisma.skillsOnRepositories.delete({
  where: {
    // ... filter to delete one SkillsOnRepositories
  }
})

Input

Name Type Required
where SkillsOnRepositoriesWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one SkillsOnRepositories

// Update one SkillsOnRepositories
const skillsOnRepositories = await prisma.skillsOnRepositories.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SkillsOnRepositoriesUpdateInput | SkillsOnRepositoriesUncheckedUpdateInput Yes
where SkillsOnRepositoriesWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more SkillsOnRepositories

// Delete a few SkillsOnRepositories
const { count } = await prisma.skillsOnRepositories.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SkillsOnRepositoriesWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one SkillsOnRepositories

const { count } = await prisma.skillsOnRepositories.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SkillsOnRepositoriesUpdateManyMutationInput | SkillsOnRepositoriesUncheckedUpdateManyInput Yes
where SkillsOnRepositoriesWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one SkillsOnRepositories

// Update or create a SkillsOnRepositories
const skillsOnRepositories = await prisma.skillsOnRepositories.upsert({
  create: {
    // ... data to create a SkillsOnRepositories
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SkillsOnRepositories we want to update
  }
})

Input

Name Type Required
where SkillsOnRepositoriesWhereUniqueInput Yes
create SkillsOnRepositoriesCreateInput | SkillsOnRepositoriesUncheckedCreateInput Yes
update SkillsOnRepositoriesUpdateInput | SkillsOnRepositoriesUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Organization

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
name String
  • @unique
Yes -
experiences Experience[]
  • -
Yes -

Operations

findUnique

Find zero or one Organization

// Get one Organization
const organization = await prisma.organization.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Organization

// Get one Organization
const organization = await prisma.organization.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationWhereInput No
orderBy OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput No
cursor OrganizationWhereUniqueInput No
take Int No
skip Int No
distinct OrganizationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Organization

// Get all Organization
const Organization = await prisma.organization.findMany()
// Get first 10 Organization
const Organization = await prisma.organization.findMany({ take: 10 })

Input

Name Type Required
where OrganizationWhereInput No
orderBy OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput No
cursor OrganizationWhereUniqueInput No
take Int No
skip Int No
distinct OrganizationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Organization

// Create one Organization
const Organization = await prisma.organization.create({
  data: {
    // ... data to create a Organization
  }
})

Input

Name Type Required
data OrganizationCreateInput | OrganizationUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Organization

// Delete one Organization
const Organization = await prisma.organization.delete({
  where: {
    // ... filter to delete one Organization
  }
})

Input

Name Type Required
where OrganizationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Organization

// Update one Organization
const organization = await prisma.organization.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrganizationUpdateInput | OrganizationUncheckedUpdateInput Yes
where OrganizationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Organization

// Delete a few Organization
const { count } = await prisma.organization.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Organization

const { count } = await prisma.organization.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyInput Yes
where OrganizationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Organization

// Update or create a Organization
const organization = await prisma.organization.upsert({
  create: {
    // ... data to create a Organization
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Organization we want to update
  }
})

Input

Name Type Required
where OrganizationWhereUniqueInput Yes
create OrganizationCreateInput | OrganizationUncheckedCreateInput Yes
update OrganizationUpdateInput | OrganizationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Experience

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
endDate DateTime?
  • -
No -
highlights String[]
  • -
Yes -
location String?
  • -
No -
organization Organization
  • -
Yes -
organizationName String
  • -
Yes -
positionName String
  • -
Yes -
startDate DateTime
  • -
Yes -
type ExperienceType?
  • -
No -
user User
  • -
Yes -
userId String
  • -
Yes -

Operations

findUnique

Find zero or one Experience

// Get one Experience
const experience = await prisma.experience.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExperienceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Experience

// Get one Experience
const experience = await prisma.experience.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExperienceWhereInput No
orderBy ExperienceOrderByWithRelationInput[] | ExperienceOrderByWithRelationInput No
cursor ExperienceWhereUniqueInput No
take Int No
skip Int No
distinct ExperienceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Experience

// Get all Experience
const Experience = await prisma.experience.findMany()
// Get first 10 Experience
const Experience = await prisma.experience.findMany({ take: 10 })

Input

Name Type Required
where ExperienceWhereInput No
orderBy ExperienceOrderByWithRelationInput[] | ExperienceOrderByWithRelationInput No
cursor ExperienceWhereUniqueInput No
take Int No
skip Int No
distinct ExperienceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Experience

// Create one Experience
const Experience = await prisma.experience.create({
  data: {
    // ... data to create a Experience
  }
})

Input

Name Type Required
data ExperienceCreateInput | ExperienceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Experience

// Delete one Experience
const Experience = await prisma.experience.delete({
  where: {
    // ... filter to delete one Experience
  }
})

Input

Name Type Required
where ExperienceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Experience

// Update one Experience
const experience = await prisma.experience.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ExperienceUpdateInput | ExperienceUncheckedUpdateInput Yes
where ExperienceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Experience

// Delete a few Experience
const { count } = await prisma.experience.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ExperienceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Experience

const { count } = await prisma.experience.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ExperienceUpdateManyMutationInput | ExperienceUncheckedUpdateManyInput Yes
where ExperienceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Experience

// Update or create a Experience
const experience = await prisma.experience.upsert({
  create: {
    // ... data to create a Experience
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Experience we want to update
  }
})

Input

Name Type Required
where ExperienceWhereUniqueInput Yes
create ExperienceCreateInput | ExperienceUncheckedCreateInput Yes
update ExperienceUpdateInput | ExperienceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Types

Input Types

AccountWhereInput

Name Type Nullable
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
id StringFilter | String No
id_token StringNullableFilter | String | Null Yes
provider StringFilter | String No
providerAccountId StringFilter | String No
oauth_token StringNullableFilter | String | Null Yes
oauth_token_secret StringNullableFilter | String | Null Yes
refresh_token StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
token_type StringNullableFilter | String | Null Yes
type StringFilter | String No
user UserRelationFilter | UserWhereInput No
userId StringFilter | String No

AccountOrderByWithRelationInput

Name Type Nullable
access_token SortOrder No
expires_at SortOrder No
id SortOrder No
id_token SortOrder No
provider SortOrder No
providerAccountId SortOrder No
oauth_token SortOrder No
oauth_token_secret SortOrder No
refresh_token SortOrder No
scope SortOrder No
session_state SortOrder No
token_type SortOrder No
type SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

AccountWhereUniqueInput

Name Type Nullable
id String No
provider_providerAccountId AccountProviderProviderAccountIdCompoundUniqueInput No

AccountOrderByWithAggregationInput

Name Type Nullable
access_token SortOrder No
expires_at SortOrder No
id SortOrder No
id_token SortOrder No
provider SortOrder No
providerAccountId SortOrder No
oauth_token SortOrder No
oauth_token_secret SortOrder No
refresh_token SortOrder No
scope SortOrder No
session_state SortOrder No
token_type SortOrder No
type SortOrder No
userId SortOrder No
_count AccountCountOrderByAggregateInput No
_avg AccountAvgOrderByAggregateInput No
_max AccountMaxOrderByAggregateInput No
_min AccountMinOrderByAggregateInput No
_sum AccountSumOrderByAggregateInput No

AccountScalarWhereWithAggregatesInput

Name Type Nullable
AND AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
OR AccountScalarWhereWithAggregatesInput[] No
NOT AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
access_token StringNullableWithAggregatesFilter | String | Null Yes
expires_at IntNullableWithAggregatesFilter | Int | Null Yes
id StringWithAggregatesFilter | String No
id_token StringNullableWithAggregatesFilter | String | Null Yes
provider StringWithAggregatesFilter | String No
providerAccountId StringWithAggregatesFilter | String No
oauth_token StringNullableWithAggregatesFilter | String | Null Yes
oauth_token_secret StringNullableWithAggregatesFilter | String | Null Yes
refresh_token StringNullableWithAggregatesFilter | String | Null Yes
scope StringNullableWithAggregatesFilter | String | Null Yes
session_state StringNullableWithAggregatesFilter | String | Null Yes
token_type StringNullableWithAggregatesFilter | String | Null Yes
type StringWithAggregatesFilter | String No
userId StringWithAggregatesFilter | String No

SessionWhereInput

Name Type Nullable
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
expires DateTimeFilter | DateTime No
id StringFilter | String No
sessionToken StringFilter | String No
user UserRelationFilter | UserWhereInput No
userId StringFilter | String No

SessionOrderByWithRelationInput

Name Type Nullable
expires SortOrder No
id SortOrder No
sessionToken SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

SessionWhereUniqueInput

Name Type Nullable
id String No
sessionToken String No

SessionOrderByWithAggregationInput

Name Type Nullable
expires SortOrder No
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
_count SessionCountOrderByAggregateInput No
_max SessionMaxOrderByAggregateInput No
_min SessionMinOrderByAggregateInput No


VerificationTokenWhereInput

Name Type Nullable
AND VerificationTokenWhereInput | VerificationTokenWhereInput[] No
OR VerificationTokenWhereInput[] No
NOT VerificationTokenWhereInput | VerificationTokenWhereInput[] No
expires DateTimeFilter | DateTime No
identifier StringFilter | String No
token StringFilter | String No

VerificationTokenOrderByWithRelationInput

Name Type Nullable
expires SortOrder No
identifier SortOrder No
token SortOrder No

VerificationTokenWhereUniqueInput

Name Type Nullable
token String No
identifier_token VerificationTokenIdentifierTokenCompoundUniqueInput No

VerificationTokenOrderByWithAggregationInput

Name Type Nullable
expires SortOrder No
identifier SortOrder No
token SortOrder No
_count VerificationTokenCountOrderByAggregateInput No
_max VerificationTokenMaxOrderByAggregateInput No
_min VerificationTokenMinOrderByAggregateInput No


UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
accounts AccountListRelationFilter No
activities UserActivityListRelationFilter No
chats ChatsOnUsersListRelationFilter No
chatMessages ChatMessageListRelationFilter No
comments CommentListRelationFilter No
createdAt DateTimeFilter | DateTime No
description StringNullableFilter | String | Null Yes
desiredSkills DesiredSkillsOnUsersListRelationFilter No
email StringFilter | String No
emailVerified DateTimeNullableFilter | DateTime | Null Yes
experiences ExperienceListRelationFilter No
followedBy FollowUserListRelationFilter No
followingSkill FollowSkillListRelationFilter No
followingUser FollowUserListRelationFilter No
friendedBy FriendshipListRelationFilter No
friending FriendshipListRelationFilter No
id StringFilter | String No
image StringNullableFilter | String | Null Yes
name StringFilter | String No
posts PostListRelationFilter No
repositories RepositoryListRelationFilter No
sessions SessionListRelationFilter No
skills SkillsOnUsersListRelationFilter No
updatedAt DateTimeFilter | DateTime No
upvotedComments CommentUpvoterListRelationFilter No
upvotedPosts PostUpvoterListRelationFilter No

UserOrderByWithRelationInput

Name Type Nullable
accounts AccountOrderByRelationAggregateInput No
activities UserActivityOrderByRelationAggregateInput No
chats ChatsOnUsersOrderByRelationAggregateInput No
chatMessages ChatMessageOrderByRelationAggregateInput No
comments CommentOrderByRelationAggregateInput No
createdAt SortOrder No
description SortOrder No
desiredSkills DesiredSkillsOnUsersOrderByRelationAggregateInput No
email SortOrder No
emailVerified SortOrder No
experiences ExperienceOrderByRelationAggregateInput No
followedBy FollowUserOrderByRelationAggregateInput No
followingSkill FollowSkillOrderByRelationAggregateInput No
followingUser FollowUserOrderByRelationAggregateInput No
friendedBy FriendshipOrderByRelationAggregateInput No
friending FriendshipOrderByRelationAggregateInput No
id SortOrder No
image SortOrder No
name SortOrder No
posts PostOrderByRelationAggregateInput No
repositories RepositoryOrderByRelationAggregateInput No
sessions SessionOrderByRelationAggregateInput No
skills SkillsOnUsersOrderByRelationAggregateInput No
updatedAt SortOrder No
upvotedComments CommentUpvoterOrderByRelationAggregateInput No
upvotedPosts PostUpvoterOrderByRelationAggregateInput No

UserWhereUniqueInput

Name Type Nullable
email String No
id String No
name String No

UserOrderByWithAggregationInput

Name Type Nullable
createdAt SortOrder No
description SortOrder No
email SortOrder No
emailVerified SortOrder No
id SortOrder No
image SortOrder No
name SortOrder No
updatedAt SortOrder No
_count UserCountOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No

UserScalarWhereWithAggregatesInput

Name Type Nullable
AND UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
OR UserScalarWhereWithAggregatesInput[] No
NOT UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
createdAt DateTimeWithAggregatesFilter | DateTime No
description StringNullableWithAggregatesFilter | String | Null Yes
email StringWithAggregatesFilter | String No
emailVerified DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
id StringWithAggregatesFilter | String No
image StringNullableWithAggregatesFilter | String | Null Yes
name StringWithAggregatesFilter | String No
updatedAt DateTimeWithAggregatesFilter | DateTime No

UserActivityWhereInput

Name Type Nullable
AND UserActivityWhereInput | UserActivityWhereInput[] No
OR UserActivityWhereInput[] No
NOT UserActivityWhereInput | UserActivityWhereInput[] No
id StringFilter | String No
comment CommentRelationFilter | CommentWhereInput | Null Yes
commentId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
follow FollowRelationFilter | FollowWhereInput | Null Yes
followId StringNullableFilter | String | Null Yes
friendship FriendshipRelationFilter | FriendshipWhereInput | Null Yes
friendshipId StringNullableFilter | String | Null Yes
post PostRelationFilter | PostWhereInput | Null Yes
postId StringNullableFilter | String | Null Yes
type EnumUserActivityTypeFilter | UserActivityType No
user UserRelationFilter | UserWhereInput No
userId StringFilter | String No

UserActivityOrderByWithRelationInput

Name Type Nullable
id SortOrder No
comment CommentOrderByWithRelationInput No
commentId SortOrder No
createdAt SortOrder No
follow FollowOrderByWithRelationInput No
followId SortOrder No
friendship FriendshipOrderByWithRelationInput No
friendshipId SortOrder No
post PostOrderByWithRelationInput No
postId SortOrder No
type SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

UserActivityWhereUniqueInput

Name Type Nullable
id String No

UserActivityOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
commentId SortOrder No
createdAt SortOrder No
followId SortOrder No
friendshipId SortOrder No
postId SortOrder No
type SortOrder No
userId SortOrder No
_count UserActivityCountOrderByAggregateInput No
_max UserActivityMaxOrderByAggregateInput No
_min UserActivityMinOrderByAggregateInput No


FriendshipWhereInput

Name Type Nullable
AND FriendshipWhereInput | FriendshipWhereInput[] No
OR FriendshipWhereInput[] No
NOT FriendshipWhereInput | FriendshipWhereInput[] No
id StringFilter | String No
activities UserActivityListRelationFilter No
friender UserRelationFilter | UserWhereInput No
frienderId StringFilter | String No
friending UserRelationFilter | UserWhereInput No
friendingId StringFilter | String No
rejected BoolFilter | Boolean No
updatedAt DateTimeFilter | DateTime No

FriendshipOrderByWithRelationInput

Name Type Nullable
id SortOrder No
activities UserActivityOrderByRelationAggregateInput No
friender UserOrderByWithRelationInput No
frienderId SortOrder No
friending UserOrderByWithRelationInput No
friendingId SortOrder No
rejected SortOrder No
updatedAt SortOrder No

FriendshipWhereUniqueInput

Name Type Nullable
id String No
frienderId_friendingId FriendshipFrienderIdFriendingIdCompoundUniqueInput No

FriendshipOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
frienderId SortOrder No
friendingId SortOrder No
rejected SortOrder No
updatedAt SortOrder No
_count FriendshipCountOrderByAggregateInput No
_max FriendshipMaxOrderByAggregateInput No
_min FriendshipMinOrderByAggregateInput No


FollowWhereInput

Name Type Nullable
AND FollowWhereInput | FollowWhereInput[] No
OR FollowWhereInput[] No
NOT FollowWhereInput | FollowWhereInput[] No
id StringFilter | String No
activities UserActivityListRelationFilter No
createdAt DateTimeFilter | DateTime No
followingSkill FollowSkillRelationFilter | FollowSkillWhereInput | Null Yes
followingUser FollowUserRelationFilter | FollowUserWhereInput | Null Yes

FollowOrderByWithRelationInput

Name Type Nullable
id SortOrder No
activities UserActivityOrderByRelationAggregateInput No
createdAt SortOrder No
followingSkill FollowSkillOrderByWithRelationInput No
followingUser FollowUserOrderByWithRelationInput No

FollowWhereUniqueInput

Name Type Nullable
id String No

FollowOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
_count FollowCountOrderByAggregateInput No
_max FollowMaxOrderByAggregateInput No
_min FollowMinOrderByAggregateInput No


FollowUserWhereInput

Name Type Nullable
AND FollowUserWhereInput | FollowUserWhereInput[] No
OR FollowUserWhereInput[] No
NOT FollowUserWhereInput | FollowUserWhereInput[] No
id StringFilter | String No
follow FollowRelationFilter | FollowWhereInput No
followId StringFilter | String No
follower UserRelationFilter | UserWhereInput No
followerId StringFilter | String No
following UserRelationFilter | UserWhereInput No
followingId StringFilter | String No

FollowUserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
follow FollowOrderByWithRelationInput No
followId SortOrder No
follower UserOrderByWithRelationInput No
followerId SortOrder No
following UserOrderByWithRelationInput No
followingId SortOrder No

FollowUserWhereUniqueInput

Name Type Nullable
id String No
followId String No
followerId_followingId FollowUserFollowerIdFollowingIdCompoundUniqueInput No

FollowUserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
followId SortOrder No
followerId SortOrder No
followingId SortOrder No
_count FollowUserCountOrderByAggregateInput No
_max FollowUserMaxOrderByAggregateInput No
_min FollowUserMinOrderByAggregateInput No


FollowSkillWhereInput

Name Type Nullable
AND FollowSkillWhereInput | FollowSkillWhereInput[] No
OR FollowSkillWhereInput[] No
NOT FollowSkillWhereInput | FollowSkillWhereInput[] No
id StringFilter | String No
follow FollowRelationFilter | FollowWhereInput No
followId StringFilter | String No
follower UserRelationFilter | UserWhereInput No
followerId StringFilter | String No
following SkillRelationFilter | SkillWhereInput No
followingId StringFilter | String No

FollowSkillOrderByWithRelationInput

Name Type Nullable
id SortOrder No
follow FollowOrderByWithRelationInput No
followId SortOrder No
follower UserOrderByWithRelationInput No
followerId SortOrder No
following SkillOrderByWithRelationInput No
followingId SortOrder No

FollowSkillWhereUniqueInput

Name Type Nullable
id String No
followId String No
followerId_followingId FollowSkillFollowerIdFollowingIdCompoundUniqueInput No

FollowSkillOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
followId SortOrder No
followerId SortOrder No
followingId SortOrder No
_count FollowSkillCountOrderByAggregateInput No
_max FollowSkillMaxOrderByAggregateInput No
_min FollowSkillMinOrderByAggregateInput No


ChatWhereInput

Name Type Nullable
AND ChatWhereInput | ChatWhereInput[] No
OR ChatWhereInput[] No
NOT ChatWhereInput | ChatWhereInput[] No
id StringFilter | String No
messages ChatMessageListRelationFilter No
users ChatsOnUsersListRelationFilter No

ChatOrderByWithRelationInput

Name Type Nullable
id SortOrder No
messages ChatMessageOrderByRelationAggregateInput No
users ChatsOnUsersOrderByRelationAggregateInput No

ChatWhereUniqueInput

Name Type Nullable
id String No

ChatOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
_count ChatCountOrderByAggregateInput No
_max ChatMaxOrderByAggregateInput No
_min ChatMinOrderByAggregateInput No


ChatMessageWhereInput

Name Type Nullable
AND ChatMessageWhereInput | ChatMessageWhereInput[] No
OR ChatMessageWhereInput[] No
NOT ChatMessageWhereInput | ChatMessageWhereInput[] No
id StringFilter | String No
chat ChatRelationFilter | ChatWhereInput No
chatId StringFilter | String No
content JsonFilter No
sender UserRelationFilter | UserWhereInput No
senderId StringFilter | String No

ChatMessageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
chat ChatOrderByWithRelationInput No
chatId SortOrder No
content SortOrder No
sender UserOrderByWithRelationInput No
senderId SortOrder No

ChatMessageWhereUniqueInput

Name Type Nullable
id String No

ChatMessageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
chatId SortOrder No
content SortOrder No
senderId SortOrder No
_count ChatMessageCountOrderByAggregateInput No
_max ChatMessageMaxOrderByAggregateInput No
_min ChatMessageMinOrderByAggregateInput No


ChatsOnUsersWhereInput

Name Type Nullable
AND ChatsOnUsersWhereInput | ChatsOnUsersWhereInput[] No
OR ChatsOnUsersWhereInput[] No
NOT ChatsOnUsersWhereInput | ChatsOnUsersWhereInput[] No
id StringFilter | String No
chat ChatRelationFilter | ChatWhereInput No
chatId StringFilter | String No
user UserRelationFilter | UserWhereInput No
userId StringFilter | String No

ChatsOnUsersOrderByWithRelationInput

Name Type Nullable
id SortOrder No
chat ChatOrderByWithRelationInput No
chatId SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

ChatsOnUsersWhereUniqueInput

Name Type Nullable
id String No
chatId_userId ChatsOnUsersChatIdUserIdCompoundUniqueInput No

ChatsOnUsersOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
chatId SortOrder No
userId SortOrder No
_count ChatsOnUsersCountOrderByAggregateInput No
_max ChatsOnUsersMaxOrderByAggregateInput No
_min ChatsOnUsersMinOrderByAggregateInput No


PostWhereInput

Name Type Nullable
AND PostWhereInput | PostWhereInput[] No
OR PostWhereInput[] No
NOT PostWhereInput | PostWhereInput[] No
activities UserActivityListRelationFilter No
author UserRelationFilter | UserWhereInput No
authorName StringFilter | String No
comments CommentListRelationFilter No
content JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
description StringNullableFilter | String | Null Yes
id StringFilter | String No
images PostImageListRelationFilter No
publishedAt DateTimeNullableFilter | DateTime | Null Yes
readTime IntNullableFilter | Int | Null Yes
skills SkillsOnPostsListRelationFilter No
title StringNullableFilter | String | Null Yes
thumbnailUrl StringNullableFilter | String | Null Yes
updatedAt DateTimeFilter | DateTime No
upvoters PostUpvoterListRelationFilter No
urlSlug StringFilter | String No

PostOrderByWithRelationInput

Name Type Nullable
activities UserActivityOrderByRelationAggregateInput No
author UserOrderByWithRelationInput No
authorName SortOrder No
comments CommentOrderByRelationAggregateInput No
content SortOrder No
createdAt SortOrder No
description SortOrder No
id SortOrder No
images PostImageOrderByRelationAggregateInput No
publishedAt SortOrder No
readTime SortOrder No
skills SkillsOnPostsOrderByRelationAggregateInput No
title SortOrder No
thumbnailUrl SortOrder No
updatedAt SortOrder No
upvoters PostUpvoterOrderByRelationAggregateInput No
urlSlug SortOrder No

PostWhereUniqueInput

Name Type Nullable
id String No
authorName_urlSlug PostAuthorNameUrlSlugCompoundUniqueInput No

PostOrderByWithAggregationInput

Name Type Nullable
authorName SortOrder No
content SortOrder No
createdAt SortOrder No
description SortOrder No
id SortOrder No
publishedAt SortOrder No
readTime SortOrder No
title SortOrder No
thumbnailUrl SortOrder No
updatedAt SortOrder No
urlSlug SortOrder No
_count PostCountOrderByAggregateInput No
_avg PostAvgOrderByAggregateInput No
_max PostMaxOrderByAggregateInput No
_min PostMinOrderByAggregateInput No
_sum PostSumOrderByAggregateInput No

PostScalarWhereWithAggregatesInput

Name Type Nullable
AND PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] No
OR PostScalarWhereWithAggregatesInput[] No
NOT PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] No
authorName StringWithAggregatesFilter | String No
content JsonNullableWithAggregatesFilter No
createdAt DateTimeWithAggregatesFilter | DateTime No
description StringNullableWithAggregatesFilter | String | Null Yes
id StringWithAggregatesFilter | String No
publishedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
readTime IntNullableWithAggregatesFilter | Int | Null Yes
title StringNullableWithAggregatesFilter | String | Null Yes
thumbnailUrl StringNullableWithAggregatesFilter | String | Null Yes
updatedAt DateTimeWithAggregatesFilter | DateTime No
urlSlug StringWithAggregatesFilter | String No

PostUpvoterWhereInput

Name Type Nullable
AND PostUpvoterWhereInput | PostUpvoterWhereInput[] No
OR PostUpvoterWhereInput[] No
NOT PostUpvoterWhereInput | PostUpvoterWhereInput[] No
id StringFilter | String No
post PostRelationFilter | PostWhereInput No
postId StringFilter | String No
upvote BoolFilter | Boolean No
user UserRelationFilter | UserWhereInput No
userId StringFilter | String No

PostUpvoterOrderByWithRelationInput

Name Type Nullable
id SortOrder No
post PostOrderByWithRelationInput No
postId SortOrder No
upvote SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

PostUpvoterWhereUniqueInput

Name Type Nullable
id String No
userId_postId PostUpvoterUserIdPostIdCompoundUniqueInput No

PostUpvoterOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
postId SortOrder No
upvote SortOrder No
userId SortOrder No
_count PostUpvoterCountOrderByAggregateInput No
_max PostUpvoterMaxOrderByAggregateInput No
_min PostUpvoterMinOrderByAggregateInput No


PostImageWhereInput

Name Type Nullable
AND PostImageWhereInput | PostImageWhereInput[] No
OR PostImageWhereInput[] No
NOT PostImageWhereInput | PostImageWhereInput[] No
id StringFilter | String No
post PostRelationFilter | PostWhereInput No
postId StringFilter | String No
url StringFilter | String No
createdAt DateTimeFilter | DateTime No

PostImageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
post PostOrderByWithRelationInput No
postId SortOrder No
url SortOrder No
createdAt SortOrder No

PostImageWhereUniqueInput

Name Type Nullable
id String No
url String No

PostImageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
postId SortOrder No
url SortOrder No
createdAt SortOrder No
_count PostImageCountOrderByAggregateInput No
_max PostImageMaxOrderByAggregateInput No
_min PostImageMinOrderByAggregateInput No


CommentWhereInput

Name Type Nullable
AND CommentWhereInput | CommentWhereInput[] No
OR CommentWhereInput[] No
NOT CommentWhereInput | CommentWhereInput[] No
id StringFilter | String No
activities UserActivityListRelationFilter No
author UserRelationFilter | UserWhereInput No
authorId StringFilter | String No
content JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
parent CommentRelationFilter | CommentWhereInput | Null Yes
parentId StringNullableFilter | String | Null Yes
post PostRelationFilter | PostWhereInput | Null Yes
postId StringNullableFilter | String | Null Yes
replies CommentListRelationFilter No
updatedAt DateTimeFilter | DateTime No
upvoters CommentUpvoterListRelationFilter No

CommentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
activities UserActivityOrderByRelationAggregateInput No
author UserOrderByWithRelationInput No
authorId SortOrder No
content SortOrder No
createdAt SortOrder No
parent CommentOrderByWithRelationInput No
parentId SortOrder No
post PostOrderByWithRelationInput No
postId SortOrder No
replies CommentOrderByRelationAggregateInput No
updatedAt SortOrder No
upvoters CommentUpvoterOrderByRelationAggregateInput No

CommentWhereUniqueInput

Name Type Nullable
id String No

CommentOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
content SortOrder No
createdAt SortOrder No
parentId SortOrder No
postId SortOrder No
updatedAt SortOrder No
_count CommentCountOrderByAggregateInput No
_max CommentMaxOrderByAggregateInput No
_min CommentMinOrderByAggregateInput No


CommentUpvoterWhereInput

Name Type Nullable
AND CommentUpvoterWhereInput | CommentUpvoterWhereInput[] No
OR CommentUpvoterWhereInput[] No
NOT CommentUpvoterWhereInput | CommentUpvoterWhereInput[] No
id StringFilter | String No
comment CommentRelationFilter | CommentWhereInput No
commentId StringFilter | String No
upvote BoolFilter | Boolean No
user UserRelationFilter | UserWhereInput No
userId StringFilter | String No

CommentUpvoterOrderByWithRelationInput

Name Type Nullable
id SortOrder No
comment CommentOrderByWithRelationInput No
commentId SortOrder No
upvote SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

CommentUpvoterWhereUniqueInput

Name Type Nullable
id String No
commentId_userId CommentUpvoterCommentIdUserIdCompoundUniqueInput No

CommentUpvoterOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
commentId SortOrder No
upvote SortOrder No
userId SortOrder No
_count CommentUpvoterCountOrderByAggregateInput No
_max CommentUpvoterMaxOrderByAggregateInput No
_min CommentUpvoterMinOrderByAggregateInput No




SkillWhereUniqueInput

Name Type Nullable
id String No
name_owner SkillNameOwnerCompoundUniqueInput No

SkillOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
owner SortOrder No
_count SkillCountOrderByAggregateInput No
_max SkillMaxOrderByAggregateInput No
_min SkillMinOrderByAggregateInput No


SkillsOnPostsWhereInput

Name Type Nullable
AND SkillsOnPostsWhereInput | SkillsOnPostsWhereInput[] No
OR SkillsOnPostsWhereInput[] No
NOT SkillsOnPostsWhereInput | SkillsOnPostsWhereInput[] No
id StringFilter | String No
post PostRelationFilter | PostWhereInput No
postId StringFilter | String No
skill SkillRelationFilter | SkillWhereInput No
skillId StringFilter | String No

SkillsOnPostsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
post PostOrderByWithRelationInput No
postId SortOrder No
skill SkillOrderByWithRelationInput No
skillId SortOrder No

SkillsOnPostsWhereUniqueInput

Name Type Nullable
id String No
skillId_postId SkillsOnPostsSkillIdPostIdCompoundUniqueInput No

SkillsOnPostsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
postId SortOrder No
skillId SortOrder No
_count SkillsOnPostsCountOrderByAggregateInput No
_max SkillsOnPostsMaxOrderByAggregateInput No
_min SkillsOnPostsMinOrderByAggregateInput No


SkillsOnUsersWhereInput

Name Type Nullable
AND SkillsOnUsersWhereInput | SkillsOnUsersWhereInput[] No
OR SkillsOnUsersWhereInput[] No
NOT SkillsOnUsersWhereInput | SkillsOnUsersWhereInput[] No
id StringFilter | String No
skill SkillRelationFilter | SkillWhereInput No
skillId StringFilter | String No
user UserRelationFilter | UserWhereInput No
userId StringFilter | String No

SkillsOnUsersOrderByWithRelationInput

Name Type Nullable
id SortOrder No
skill SkillOrderByWithRelationInput No
skillId SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

SkillsOnUsersWhereUniqueInput

Name Type Nullable
id String No
skillId_userId SkillsOnUsersSkillIdUserIdCompoundUniqueInput No

SkillsOnUsersOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
userId SortOrder No
_count SkillsOnUsersCountOrderByAggregateInput No
_max SkillsOnUsersMaxOrderByAggregateInput No
_min SkillsOnUsersMinOrderByAggregateInput No



DesiredSkillsOnUsersOrderByWithRelationInput

Name Type Nullable
id SortOrder No
skill SkillOrderByWithRelationInput No
skillId SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

DesiredSkillsOnUsersWhereUniqueInput

Name Type Nullable
id String No
skillId_userId DesiredSkillsOnUsersSkillIdUserIdCompoundUniqueInput No

DesiredSkillsOnUsersOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
userId SortOrder No
_count DesiredSkillsOnUsersCountOrderByAggregateInput No
_max DesiredSkillsOnUsersMaxOrderByAggregateInput No
_min DesiredSkillsOnUsersMinOrderByAggregateInput No


RepositoryWhereInput

Name Type Nullable
AND RepositoryWhereInput | RepositoryWhereInput[] No
OR RepositoryWhereInput[] No
NOT RepositoryWhereInput | RepositoryWhereInput[] No
id StringFilter | String No
name StringFilter | String No
skills SkillsOnRepositoriesListRelationFilter No
user UserRelationFilter | UserWhereInput No
owner StringFilter | String No

RepositoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
skills SkillsOnRepositoriesOrderByRelationAggregateInput No
user UserOrderByWithRelationInput No
owner SortOrder No

RepositoryWhereUniqueInput

Name Type Nullable
id String No
name_owner RepositoryNameOwnerCompoundUniqueInput No

RepositoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
owner SortOrder No
_count RepositoryCountOrderByAggregateInput No
_max RepositoryMaxOrderByAggregateInput No
_min RepositoryMinOrderByAggregateInput No



SkillsOnRepositoriesOrderByWithRelationInput

Name Type Nullable
id SortOrder No
skill SkillOrderByWithRelationInput No
skillId SortOrder No
repository RepositoryOrderByWithRelationInput No
repositoryId SortOrder No

SkillsOnRepositoriesWhereUniqueInput

Name Type Nullable
id String No
skillId_repositoryId SkillsOnRepositoriesSkillIdRepositoryIdCompoundUniqueInput No

SkillsOnRepositoriesOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
repositoryId SortOrder No
_count SkillsOnRepositoriesCountOrderByAggregateInput No
_max SkillsOnRepositoriesMaxOrderByAggregateInput No
_min SkillsOnRepositoriesMinOrderByAggregateInput No


OrganizationWhereInput

Name Type Nullable
AND OrganizationWhereInput | OrganizationWhereInput[] No
OR OrganizationWhereInput[] No
NOT OrganizationWhereInput | OrganizationWhereInput[] No
id StringFilter | String No
name StringFilter | String No
experiences ExperienceListRelationFilter No

OrganizationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
experiences ExperienceOrderByRelationAggregateInput No

OrganizationWhereUniqueInput

Name Type Nullable
id String No
name String No

OrganizationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
_count OrganizationCountOrderByAggregateInput No
_max OrganizationMaxOrderByAggregateInput No
_min OrganizationMinOrderByAggregateInput No


ExperienceWhereInput

Name Type Nullable
AND ExperienceWhereInput | ExperienceWhereInput[] No
OR ExperienceWhereInput[] No
NOT ExperienceWhereInput | ExperienceWhereInput[] No
id StringFilter | String No
endDate DateTimeNullableFilter | DateTime | Null Yes
highlights StringNullableListFilter No
location StringNullableFilter | String | Null Yes
organization OrganizationRelationFilter | OrganizationWhereInput No
organizationName StringFilter | String No
positionName StringFilter | String No
startDate DateTimeFilter | DateTime No
type EnumExperienceTypeNullableFilter | ExperienceType | Null Yes
user UserRelationFilter | UserWhereInput No
userId StringFilter | String No

ExperienceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
endDate SortOrder No
highlights SortOrder No
location SortOrder No
organization OrganizationOrderByWithRelationInput No
organizationName SortOrder No
positionName SortOrder No
startDate SortOrder No
type SortOrder No
user UserOrderByWithRelationInput No
userId SortOrder No

ExperienceWhereUniqueInput

Name Type Nullable
id String No

ExperienceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
endDate SortOrder No
highlights SortOrder No
location SortOrder No
organizationName SortOrder No
positionName SortOrder No
startDate SortOrder No
type SortOrder No
userId SortOrder No
_count ExperienceCountOrderByAggregateInput No
_max ExperienceMaxOrderByAggregateInput No
_min ExperienceMinOrderByAggregateInput No


AccountCreateInput

Name Type Nullable
access_token String | Null Yes
expires_at Int | Null Yes
id String No
id_token String | Null Yes
provider String No
providerAccountId String No
oauth_token String | Null Yes
oauth_token_secret String | Null Yes
refresh_token String | Null Yes
scope String | Null Yes
session_state String | Null Yes
token_type String | Null Yes
type String No
user UserCreateNestedOneWithoutAccountsInput No

AccountUncheckedCreateInput

Name Type Nullable
access_token String | Null Yes
expires_at Int | Null Yes
id String No
id_token String | Null Yes
provider String No
providerAccountId String No
oauth_token String | Null Yes
oauth_token_secret String | Null Yes
refresh_token String | Null Yes
scope String | Null Yes
session_state String | Null Yes
token_type String | Null Yes
type String No
userId String No

AccountUpdateInput

Name Type Nullable
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutAccountsInput No

AccountUncheckedUpdateInput

Name Type Nullable
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

AccountCreateManyInput

Name Type Nullable
access_token String | Null Yes
expires_at Int | Null Yes
id String No
id_token String | Null Yes
provider String No
providerAccountId String No
oauth_token String | Null Yes
oauth_token_secret String | Null Yes
refresh_token String | Null Yes
scope String | Null Yes
session_state String | Null Yes
token_type String | Null Yes
type String No
userId String No

AccountUpdateManyMutationInput

Name Type Nullable
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

AccountUncheckedUpdateManyInput

Name Type Nullable
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

SessionCreateInput

Name Type Nullable
expires DateTime No
id String No
sessionToken String No
user UserCreateNestedOneWithoutSessionsInput No

SessionUncheckedCreateInput

Name Type Nullable
expires DateTime No
id String No
sessionToken String No
userId String No

SessionUpdateInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutSessionsInput No

SessionUncheckedUpdateInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

SessionCreateManyInput

Name Type Nullable
expires DateTime No
id String No
sessionToken String No
userId String No

SessionUpdateManyMutationInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No

SessionUncheckedUpdateManyInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

VerificationTokenCreateInput

Name Type Nullable
expires DateTime No
identifier String No
token String No

VerificationTokenUncheckedCreateInput

Name Type Nullable
expires DateTime No
identifier String No
token String No

VerificationTokenUpdateInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No

VerificationTokenCreateManyInput

Name Type Nullable
expires DateTime No
identifier String No
token String No

VerificationTokenUpdateManyMutationInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateManyInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No

UserCreateInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserUpdateInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

UserCreateManyInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No

UserUpdateManyMutationInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserUncheckedUpdateManyInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No


UserActivityUncheckedCreateInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
followId String | Null Yes
friendshipId String | Null Yes
postId String | Null Yes
type UserActivityType No
userId String No


UserActivityUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followId String | NullableStringFieldUpdateOperationsInput | Null Yes
friendshipId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

UserActivityCreateManyInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
followId String | Null Yes
friendshipId String | Null Yes
postId String | Null Yes
type UserActivityType No
userId String No

UserActivityUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No

UserActivityUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followId String | NullableStringFieldUpdateOperationsInput | Null Yes
friendshipId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

FriendshipCreateInput

Name Type Nullable
id String No
rejected Boolean No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutFriendshipInput No
friender UserCreateNestedOneWithoutFriendingInput No
friending UserCreateNestedOneWithoutFriendedByInput No

FriendshipUncheckedCreateInput

Name Type Nullable
id String No
frienderId String No
friendingId String No
rejected Boolean No
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutFriendshipInput No


FriendshipUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
frienderId String | StringFieldUpdateOperationsInput No
friendingId String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutFriendshipInput No

FriendshipCreateManyInput

Name Type Nullable
id String No
frienderId String No
friendingId String No
rejected Boolean No
updatedAt DateTime No

FriendshipUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FriendshipUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
frienderId String | StringFieldUpdateOperationsInput No
friendingId String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FollowCreateInput

Name Type Nullable
id String No
createdAt DateTime No
activities UserActivityCreateNestedManyWithoutFollowInput No
followingSkill FollowSkillCreateNestedOneWithoutFollowInput No
followingUser FollowUserCreateNestedOneWithoutFollowInput No

FollowUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutFollowInput No
followingSkill FollowSkillUncheckedCreateNestedOneWithoutFollowInput No
followingUser FollowUserUncheckedCreateNestedOneWithoutFollowInput No

FollowUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutFollowInput No
followingSkill FollowSkillUpdateOneWithoutFollowInput No
followingUser FollowUserUpdateOneWithoutFollowInput No

FollowUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutFollowInput No
followingSkill FollowSkillUncheckedUpdateOneWithoutFollowInput No
followingUser FollowUserUncheckedUpdateOneWithoutFollowInput No

FollowCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No

FollowUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

FollowUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

FollowUserCreateInput

Name Type Nullable
id String No
follow FollowCreateNestedOneWithoutFollowingUserInput No
follower UserCreateNestedOneWithoutFollowingUserInput No
following UserCreateNestedOneWithoutFollowedByInput No

FollowUserUncheckedCreateInput

Name Type Nullable
id String No
followId String No
followerId String No
followingId String No


FollowUserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

FollowUserCreateManyInput

Name Type Nullable
id String No
followId String No
followerId String No
followingId String No

FollowUserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

FollowUserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

FollowSkillCreateInput

Name Type Nullable
id String No
follow FollowCreateNestedOneWithoutFollowingSkillInput No
follower UserCreateNestedOneWithoutFollowingSkillInput No
following SkillCreateNestedOneWithoutFollowedByInput No

FollowSkillUncheckedCreateInput

Name Type Nullable
id String No
followId String No
followerId String No
followingId String No


FollowSkillUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

FollowSkillCreateManyInput

Name Type Nullable
id String No
followId String No
followerId String No
followingId String No

FollowSkillUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

FollowSkillUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

ChatCreateInput

Name Type Nullable
id String No
messages ChatMessageCreateNestedManyWithoutChatInput No
users ChatsOnUsersCreateNestedManyWithoutChatInput No

ChatUncheckedCreateInput

Name Type Nullable
id String No
messages ChatMessageUncheckedCreateNestedManyWithoutChatInput No
users ChatsOnUsersUncheckedCreateNestedManyWithoutChatInput No

ChatUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
messages ChatMessageUpdateManyWithoutChatInput No
users ChatsOnUsersUpdateManyWithoutChatInput No

ChatUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
messages ChatMessageUncheckedUpdateManyWithoutChatInput No
users ChatsOnUsersUncheckedUpdateManyWithoutChatInput No

ChatCreateManyInput

Name Type Nullable
id String No

ChatUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

ChatUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

ChatMessageCreateInput

Name Type Nullable
id String No
content JsonNullValueInput | Json No
chat ChatCreateNestedOneWithoutMessagesInput No
sender UserCreateNestedOneWithoutChatMessagesInput No

ChatMessageUncheckedCreateInput

Name Type Nullable
id String No
chatId String No
content JsonNullValueInput | Json No
senderId String No

ChatMessageUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No
chat ChatUpdateOneRequiredWithoutMessagesInput No
sender UserUpdateOneRequiredWithoutChatMessagesInput No

ChatMessageUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chatId String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No
senderId String | StringFieldUpdateOperationsInput No

ChatMessageCreateManyInput

Name Type Nullable
id String No
chatId String No
content JsonNullValueInput | Json No
senderId String No

ChatMessageUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No

ChatMessageUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chatId String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No
senderId String | StringFieldUpdateOperationsInput No

ChatsOnUsersCreateInput

Name Type Nullable
id String No
chat ChatCreateNestedOneWithoutUsersInput No
user UserCreateNestedOneWithoutChatsInput No

ChatsOnUsersUncheckedCreateInput

Name Type Nullable
id String No
chatId String No
userId String No

ChatsOnUsersUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chat ChatUpdateOneRequiredWithoutUsersInput No
user UserUpdateOneRequiredWithoutChatsInput No

ChatsOnUsersUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chatId String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

ChatsOnUsersCreateManyInput

Name Type Nullable
id String No
chatId String No
userId String No

ChatsOnUsersUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

ChatsOnUsersUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chatId String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

PostCreateInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
comments CommentCreateNestedManyWithoutPostInput No
images PostImageCreateNestedManyWithoutPostInput No
skills SkillsOnPostsCreateNestedManyWithoutPostInput No
upvoters PostUpvoterCreateNestedManyWithoutPostInput No

PostUncheckedCreateInput

Name Type Nullable
authorName String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityUncheckedCreateNestedManyWithoutPostInput No
comments CommentUncheckedCreateNestedManyWithoutPostInput No
images PostImageUncheckedCreateNestedManyWithoutPostInput No
skills SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput No
upvoters PostUpvoterUncheckedCreateNestedManyWithoutPostInput No

PostUpdateInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutPostInput No
author UserUpdateOneRequiredWithoutPostsInput No
comments CommentUpdateManyWithoutPostInput No
images PostImageUpdateManyWithoutPostInput No
skills SkillsOnPostsUpdateManyWithoutPostInput No
upvoters PostUpvoterUpdateManyWithoutPostInput No

PostUncheckedUpdateInput

Name Type Nullable
authorName String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutPostInput No
comments CommentUncheckedUpdateManyWithoutPostInput No
images PostImageUncheckedUpdateManyWithoutPostInput No
skills SkillsOnPostsUncheckedUpdateManyWithoutPostInput No
upvoters PostUpvoterUncheckedUpdateManyWithoutPostInput No

PostCreateManyInput

Name Type Nullable
authorName String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No

PostUpdateManyMutationInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No

PostUncheckedUpdateManyInput

Name Type Nullable
authorName String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No

PostUpvoterCreateInput

Name Type Nullable
id String No
upvote Boolean No
post PostCreateNestedOneWithoutUpvotersInput No
user UserCreateNestedOneWithoutUpvotedPostsInput No

PostUpvoterUncheckedCreateInput

Name Type Nullable
id String No
postId String No
upvote Boolean No
userId String No


PostUpvoterUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

PostUpvoterCreateManyInput

Name Type Nullable
id String No
postId String No
upvote Boolean No
userId String No

PostUpvoterUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No

PostUpvoterUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

PostImageCreateInput

Name Type Nullable
id String No
url String No
createdAt DateTime No
post PostCreateNestedOneWithoutImagesInput No

PostImageUncheckedCreateInput

Name Type Nullable
id String No
postId String No
url String No
createdAt DateTime No

PostImageUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
post PostUpdateOneRequiredWithoutImagesInput No

PostImageUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PostImageCreateManyInput

Name Type Nullable
id String No
postId String No
url String No
createdAt DateTime No

PostImageUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PostImageUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No


CommentUncheckedCreateInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
postId String | Null Yes
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutCommentInput No
replies CommentUncheckedCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput No



CommentCreateManyInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
postId String | Null Yes
updatedAt DateTime No

CommentUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

CommentUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
parentId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

CommentUpvoterCreateInput

Name Type Nullable
id String No
upvote Boolean No
comment CommentCreateNestedOneWithoutUpvotersInput No
user UserCreateNestedOneWithoutUpvotedCommentsInput No

CommentUpvoterUncheckedCreateInput

Name Type Nullable
id String No
commentId String No
upvote Boolean No
userId String No

CommentUpvoterUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
comment CommentUpdateOneRequiredWithoutUpvotersInput No
user UserUpdateOneRequiredWithoutUpvotedCommentsInput No

CommentUpvoterUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

CommentUpvoterCreateManyInput

Name Type Nullable
id String No
commentId String No
upvote Boolean No
userId String No

CommentUpvoterUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No

CommentUpvoterUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No





SkillCreateManyInput

Name Type Nullable
id String No
name String No
owner String No

SkillUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
owner String | StringFieldUpdateOperationsInput No

SkillUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
owner String | StringFieldUpdateOperationsInput No

SkillsOnPostsCreateInput

Name Type Nullable
id String No
post PostCreateNestedOneWithoutSkillsInput No
skill SkillCreateNestedOneWithoutPostsInput No

SkillsOnPostsUncheckedCreateInput

Name Type Nullable
id String No
postId String No
skillId String No

SkillsOnPostsUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
post PostUpdateOneRequiredWithoutSkillsInput No
skill SkillUpdateOneRequiredWithoutPostsInput No

SkillsOnPostsUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

SkillsOnPostsCreateManyInput

Name Type Nullable
id String No
postId String No
skillId String No

SkillsOnPostsUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

SkillsOnPostsUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

SkillsOnUsersCreateInput

Name Type Nullable
id String No
skill SkillCreateNestedOneWithoutUsersInput No
user UserCreateNestedOneWithoutSkillsInput No

SkillsOnUsersUncheckedCreateInput

Name Type Nullable
id String No
skillId String No
userId String No

SkillsOnUsersUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skill SkillUpdateOneRequiredWithoutUsersInput No
user UserUpdateOneRequiredWithoutSkillsInput No

SkillsOnUsersUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

SkillsOnUsersCreateManyInput

Name Type Nullable
id String No
skillId String No
userId String No

SkillsOnUsersUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

SkillsOnUsersUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

DesiredSkillsOnUsersCreateInput

Name Type Nullable
id String No
skill SkillCreateNestedOneWithoutDesiringUsersInput No
user UserCreateNestedOneWithoutDesiredSkillsInput No

DesiredSkillsOnUsersUncheckedCreateInput

Name Type Nullable
id String No
skillId String No
userId String No

DesiredSkillsOnUsersUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skill SkillUpdateOneRequiredWithoutDesiringUsersInput No
user UserUpdateOneRequiredWithoutDesiredSkillsInput No

DesiredSkillsOnUsersUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

DesiredSkillsOnUsersCreateManyInput

Name Type Nullable
id String No
skillId String No
userId String No

DesiredSkillsOnUsersUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

DesiredSkillsOnUsersUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

RepositoryCreateInput

Name Type Nullable
id String No
name String No
skills SkillsOnRepositoriesCreateNestedManyWithoutRepositoryInput No
user UserCreateNestedOneWithoutRepositoriesInput No

RepositoryUncheckedCreateInput

Name Type Nullable
id String No
name String No
owner String No
skills SkillsOnRepositoriesUncheckedCreateNestedManyWithoutRepositoryInput No


RepositoryUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
owner String | StringFieldUpdateOperationsInput No
skills SkillsOnRepositoriesUncheckedUpdateManyWithoutRepositoryInput No

RepositoryCreateManyInput

Name Type Nullable
id String No
name String No
owner String No

RepositoryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

RepositoryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
owner String | StringFieldUpdateOperationsInput No

SkillsOnRepositoriesCreateInput

Name Type Nullable
id String No
skill SkillCreateNestedOneWithoutRepositoriesInput No
repository RepositoryCreateNestedOneWithoutSkillsInput No

SkillsOnRepositoriesUncheckedCreateInput

Name Type Nullable
id String No
skillId String No
repositoryId String No

SkillsOnRepositoriesUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skill SkillUpdateOneRequiredWithoutRepositoriesInput No
repository RepositoryUpdateOneRequiredWithoutSkillsInput No

SkillsOnRepositoriesUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No
repositoryId String | StringFieldUpdateOperationsInput No

SkillsOnRepositoriesCreateManyInput

Name Type Nullable
id String No
skillId String No
repositoryId String No

SkillsOnRepositoriesUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No

SkillsOnRepositoriesUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No
repositoryId String | StringFieldUpdateOperationsInput No

OrganizationCreateInput

Name Type Nullable
id String No
name String No
experiences ExperienceCreateNestedManyWithoutOrganizationInput No

OrganizationUncheckedCreateInput

Name Type Nullable
id String No
name String No
experiences ExperienceUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
experiences ExperienceUpdateManyWithoutOrganizationInput No

OrganizationUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
experiences ExperienceUncheckedUpdateManyWithoutOrganizationInput No

OrganizationCreateManyInput

Name Type Nullable
id String No
name String No

OrganizationUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

OrganizationUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

ExperienceCreateInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
highlights ExperienceCreatehighlightsInput | String No
organization OrganizationCreateNestedOneWithoutExperiencesInput No
user UserCreateNestedOneWithoutExperiencesInput No

ExperienceUncheckedCreateInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
organizationName String No
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
userId String No
highlights ExperienceCreatehighlightsInput | String No


ExperienceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
organizationName String | StringFieldUpdateOperationsInput No
positionName String | StringFieldUpdateOperationsInput No
startDate DateTime | DateTimeFieldUpdateOperationsInput No
type ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No
highlights ExperienceUpdatehighlightsInput | String No

ExperienceCreateManyInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
organizationName String No
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
userId String No
highlights ExperienceCreateManyhighlightsInput | String No

ExperienceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
positionName String | StringFieldUpdateOperationsInput No
startDate DateTime | DateTimeFieldUpdateOperationsInput No
type ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null Yes
highlights ExperienceUpdatehighlightsInput | String No

ExperienceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
organizationName String | StringFieldUpdateOperationsInput No
positionName String | StringFieldUpdateOperationsInput No
startDate DateTime | DateTimeFieldUpdateOperationsInput No
type ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No
highlights ExperienceUpdatehighlightsInput | String No

StringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

IntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

StringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringFilter No

UserRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

AccountProviderProviderAccountIdCompoundUniqueInput

Name Type Nullable
provider String No
providerAccountId String No

AccountCountOrderByAggregateInput

Name Type Nullable
access_token SortOrder No
expires_at SortOrder No
id SortOrder No
id_token SortOrder No
provider SortOrder No
providerAccountId SortOrder No
oauth_token SortOrder No
oauth_token_secret SortOrder No
refresh_token SortOrder No
scope SortOrder No
session_state SortOrder No
token_type SortOrder No
type SortOrder No
userId SortOrder No

AccountAvgOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

AccountMaxOrderByAggregateInput

Name Type Nullable
access_token SortOrder No
expires_at SortOrder No
id SortOrder No
id_token SortOrder No
provider SortOrder No
providerAccountId SortOrder No
oauth_token SortOrder No
oauth_token_secret SortOrder No
refresh_token SortOrder No
scope SortOrder No
session_state SortOrder No
token_type SortOrder No
type SortOrder No
userId SortOrder No

AccountMinOrderByAggregateInput

Name Type Nullable
access_token SortOrder No
expires_at SortOrder No
id SortOrder No
id_token SortOrder No
provider SortOrder No
providerAccountId SortOrder No
oauth_token SortOrder No
oauth_token_secret SortOrder No
refresh_token SortOrder No
scope SortOrder No
session_state SortOrder No
token_type SortOrder No
type SortOrder No
userId SortOrder No

AccountSumOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

StringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

DateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

SessionCountOrderByAggregateInput

Name Type Nullable
expires SortOrder No
id SortOrder No
sessionToken SortOrder No
userId SortOrder No

SessionMaxOrderByAggregateInput

Name Type Nullable
expires SortOrder No
id SortOrder No
sessionToken SortOrder No
userId SortOrder No

SessionMinOrderByAggregateInput

Name Type Nullable
expires SortOrder No
id SortOrder No
sessionToken SortOrder No
userId SortOrder No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

VerificationTokenIdentifierTokenCompoundUniqueInput

Name Type Nullable
identifier String No
token String No

VerificationTokenCountOrderByAggregateInput

Name Type Nullable
expires SortOrder No
identifier SortOrder No
token SortOrder No

VerificationTokenMaxOrderByAggregateInput

Name Type Nullable
expires SortOrder No
identifier SortOrder No
token SortOrder No

VerificationTokenMinOrderByAggregateInput

Name Type Nullable
expires SortOrder No
identifier SortOrder No
token SortOrder No

AccountListRelationFilter

Name Type Nullable
every AccountWhereInput No
some AccountWhereInput No
none AccountWhereInput No

UserActivityListRelationFilter

Name Type Nullable
every UserActivityWhereInput No
some UserActivityWhereInput No
none UserActivityWhereInput No

ChatsOnUsersListRelationFilter

Name Type Nullable
every ChatsOnUsersWhereInput No
some ChatsOnUsersWhereInput No
none ChatsOnUsersWhereInput No

ChatMessageListRelationFilter

Name Type Nullable
every ChatMessageWhereInput No
some ChatMessageWhereInput No
none ChatMessageWhereInput No

CommentListRelationFilter

Name Type Nullable
every CommentWhereInput No
some CommentWhereInput No
none CommentWhereInput No

DesiredSkillsOnUsersListRelationFilter

Name Type Nullable
every DesiredSkillsOnUsersWhereInput No
some DesiredSkillsOnUsersWhereInput No
none DesiredSkillsOnUsersWhereInput No

DateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

ExperienceListRelationFilter

Name Type Nullable
every ExperienceWhereInput No
some ExperienceWhereInput No
none ExperienceWhereInput No

FollowUserListRelationFilter

Name Type Nullable
every FollowUserWhereInput No
some FollowUserWhereInput No
none FollowUserWhereInput No

FollowSkillListRelationFilter

Name Type Nullable
every FollowSkillWhereInput No
some FollowSkillWhereInput No
none FollowSkillWhereInput No

FriendshipListRelationFilter

Name Type Nullable
every FriendshipWhereInput No
some FriendshipWhereInput No
none FriendshipWhereInput No

PostListRelationFilter

Name Type Nullable
every PostWhereInput No
some PostWhereInput No
none PostWhereInput No

RepositoryListRelationFilter

Name Type Nullable
every RepositoryWhereInput No
some RepositoryWhereInput No
none RepositoryWhereInput No

SessionListRelationFilter

Name Type Nullable
every SessionWhereInput No
some SessionWhereInput No
none SessionWhereInput No

SkillsOnUsersListRelationFilter

Name Type Nullable
every SkillsOnUsersWhereInput No
some SkillsOnUsersWhereInput No
none SkillsOnUsersWhereInput No

CommentUpvoterListRelationFilter

Name Type Nullable
every CommentUpvoterWhereInput No
some CommentUpvoterWhereInput No
none CommentUpvoterWhereInput No

PostUpvoterListRelationFilter

Name Type Nullable
every PostUpvoterWhereInput No
some PostUpvoterWhereInput No
none PostUpvoterWhereInput No

AccountOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserActivityOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ChatsOnUsersOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ChatMessageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CommentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

DesiredSkillsOnUsersOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ExperienceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FollowUserOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FollowSkillOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FriendshipOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PostOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

RepositoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SessionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SkillsOnUsersOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CommentUpvoterOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PostUpvoterOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
createdAt SortOrder No
description SortOrder No
email SortOrder No
emailVerified SortOrder No
id SortOrder No
image SortOrder No
name SortOrder No
updatedAt SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
createdAt SortOrder No
description SortOrder No
email SortOrder No
emailVerified SortOrder No
id SortOrder No
image SortOrder No
name SortOrder No
updatedAt SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
createdAt SortOrder No
description SortOrder No
email SortOrder No
emailVerified SortOrder No
id SortOrder No
image SortOrder No
name SortOrder No
updatedAt SortOrder No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

CommentRelationFilter

Name Type Nullable
is CommentWhereInput | Null Yes
isNot CommentWhereInput | Null Yes

FollowRelationFilter

Name Type Nullable
is FollowWhereInput No
isNot FollowWhereInput No

FriendshipRelationFilter

Name Type Nullable
is FriendshipWhereInput | Null Yes
isNot FriendshipWhereInput | Null Yes

PostRelationFilter

Name Type Nullable
is PostWhereInput No
isNot PostWhereInput No

EnumUserActivityTypeFilter

Name Type Nullable
equals UserActivityType No
in UserActivityType[] No
notIn UserActivityType[] No
not UserActivityType | NestedEnumUserActivityTypeFilter No

UserActivityCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
commentId SortOrder No
createdAt SortOrder No
followId SortOrder No
friendshipId SortOrder No
postId SortOrder No
type SortOrder No
userId SortOrder No

UserActivityMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
commentId SortOrder No
createdAt SortOrder No
followId SortOrder No
friendshipId SortOrder No
postId SortOrder No
type SortOrder No
userId SortOrder No

UserActivityMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
commentId SortOrder No
createdAt SortOrder No
followId SortOrder No
friendshipId SortOrder No
postId SortOrder No
type SortOrder No
userId SortOrder No

EnumUserActivityTypeWithAggregatesFilter

Name Type Nullable
equals UserActivityType No
in UserActivityType[] No
notIn UserActivityType[] No
not UserActivityType | NestedEnumUserActivityTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumUserActivityTypeFilter No
_max NestedEnumUserActivityTypeFilter No

BoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

FriendshipFrienderIdFriendingIdCompoundUniqueInput

Name Type Nullable
frienderId String No
friendingId String No

FriendshipCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
frienderId SortOrder No
friendingId SortOrder No
rejected SortOrder No
updatedAt SortOrder No

FriendshipMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
frienderId SortOrder No
friendingId SortOrder No
rejected SortOrder No
updatedAt SortOrder No

FriendshipMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
frienderId SortOrder No
friendingId SortOrder No
rejected SortOrder No
updatedAt SortOrder No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

FollowSkillRelationFilter

Name Type Nullable
is FollowSkillWhereInput | Null Yes
isNot FollowSkillWhereInput | Null Yes

FollowUserRelationFilter

Name Type Nullable
is FollowUserWhereInput | Null Yes
isNot FollowUserWhereInput | Null Yes

FollowCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No

FollowMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No

FollowMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No

FollowUserFollowerIdFollowingIdCompoundUniqueInput

Name Type Nullable
followerId String No
followingId String No

FollowUserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
followId SortOrder No
followerId SortOrder No
followingId SortOrder No

FollowUserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
followId SortOrder No
followerId SortOrder No
followingId SortOrder No

FollowUserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
followId SortOrder No
followerId SortOrder No
followingId SortOrder No

SkillRelationFilter

Name Type Nullable
is SkillWhereInput No
isNot SkillWhereInput No

FollowSkillFollowerIdFollowingIdCompoundUniqueInput

Name Type Nullable
followerId String No
followingId String No

FollowSkillCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
followId SortOrder No
followerId SortOrder No
followingId SortOrder No

FollowSkillMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
followId SortOrder No
followerId SortOrder No
followingId SortOrder No

FollowSkillMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
followId SortOrder No
followerId SortOrder No
followingId SortOrder No

ChatCountOrderByAggregateInput

Name Type Nullable
id SortOrder No

ChatMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No

ChatMinOrderByAggregateInput

Name Type Nullable
id SortOrder No

ChatRelationFilter

Name Type Nullable
is ChatWhereInput No
isNot ChatWhereInput No

JsonFilter

Name Type Nullable
equals JsonNullValueFilter | Json No
not JsonNullValueFilter | Json No

ChatMessageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
chatId SortOrder No
content SortOrder No
senderId SortOrder No

ChatMessageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
chatId SortOrder No
senderId SortOrder No

ChatMessageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
chatId SortOrder No
senderId SortOrder No

JsonWithAggregatesFilter

Name Type Nullable
equals JsonNullValueFilter | Json No
not JsonNullValueFilter | Json No
_count NestedIntFilter No
_min NestedJsonFilter No
_max NestedJsonFilter No

ChatsOnUsersChatIdUserIdCompoundUniqueInput

Name Type Nullable
chatId String No
userId String No

ChatsOnUsersCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
chatId SortOrder No
userId SortOrder No

ChatsOnUsersMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
chatId SortOrder No
userId SortOrder No

ChatsOnUsersMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
chatId SortOrder No
userId SortOrder No

JsonNullableFilter

Name Type Nullable
equals JsonNullValueFilter | Json No
not JsonNullValueFilter | Json No

PostImageListRelationFilter

Name Type Nullable
every PostImageWhereInput No
some PostImageWhereInput No
none PostImageWhereInput No

SkillsOnPostsListRelationFilter

Name Type Nullable
every SkillsOnPostsWhereInput No
some SkillsOnPostsWhereInput No
none SkillsOnPostsWhereInput No

PostImageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SkillsOnPostsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PostAuthorNameUrlSlugCompoundUniqueInput

Name Type Nullable
authorName String No
urlSlug String No

PostCountOrderByAggregateInput

Name Type Nullable
authorName SortOrder No
content SortOrder No
createdAt SortOrder No
description SortOrder No
id SortOrder No
publishedAt SortOrder No
readTime SortOrder No
title SortOrder No
thumbnailUrl SortOrder No
updatedAt SortOrder No
urlSlug SortOrder No

PostAvgOrderByAggregateInput

Name Type Nullable
readTime SortOrder No

PostMaxOrderByAggregateInput

Name Type Nullable
authorName SortOrder No
createdAt SortOrder No
description SortOrder No
id SortOrder No
publishedAt SortOrder No
readTime SortOrder No
title SortOrder No
thumbnailUrl SortOrder No
updatedAt SortOrder No
urlSlug SortOrder No

PostMinOrderByAggregateInput

Name Type Nullable
authorName SortOrder No
createdAt SortOrder No
description SortOrder No
id SortOrder No
publishedAt SortOrder No
readTime SortOrder No
title SortOrder No
thumbnailUrl SortOrder No
updatedAt SortOrder No
urlSlug SortOrder No

PostSumOrderByAggregateInput

Name Type Nullable
readTime SortOrder No

JsonNullableWithAggregatesFilter

Name Type Nullable
equals JsonNullValueFilter | Json No
not JsonNullValueFilter | Json No
_count NestedIntNullableFilter No
_min NestedJsonNullableFilter No
_max NestedJsonNullableFilter No

PostUpvoterUserIdPostIdCompoundUniqueInput

Name Type Nullable
userId String No
postId String No

PostUpvoterCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
upvote SortOrder No
userId SortOrder No

PostUpvoterMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
upvote SortOrder No
userId SortOrder No

PostUpvoterMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
upvote SortOrder No
userId SortOrder No

PostImageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
url SortOrder No
createdAt SortOrder No

PostImageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
url SortOrder No
createdAt SortOrder No

PostImageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
url SortOrder No
createdAt SortOrder No

CommentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
content SortOrder No
createdAt SortOrder No
parentId SortOrder No
postId SortOrder No
updatedAt SortOrder No

CommentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
createdAt SortOrder No
parentId SortOrder No
postId SortOrder No
updatedAt SortOrder No

CommentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
createdAt SortOrder No
parentId SortOrder No
postId SortOrder No
updatedAt SortOrder No

CommentUpvoterCommentIdUserIdCompoundUniqueInput

Name Type Nullable
commentId String No
userId String No

CommentUpvoterCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
commentId SortOrder No
upvote SortOrder No
userId SortOrder No

CommentUpvoterMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
commentId SortOrder No
upvote SortOrder No
userId SortOrder No

CommentUpvoterMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
commentId SortOrder No
upvote SortOrder No
userId SortOrder No

SkillsOnRepositoriesListRelationFilter

Name Type Nullable
every SkillsOnRepositoriesWhereInput No
some SkillsOnRepositoriesWhereInput No
none SkillsOnRepositoriesWhereInput No

SkillsOnRepositoriesOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SkillNameOwnerCompoundUniqueInput

Name Type Nullable
name String No
owner String No

SkillCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
owner SortOrder No

SkillMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
owner SortOrder No

SkillMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
owner SortOrder No

SkillsOnPostsSkillIdPostIdCompoundUniqueInput

Name Type Nullable
skillId String No
postId String No

SkillsOnPostsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
skillId SortOrder No

SkillsOnPostsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
skillId SortOrder No

SkillsOnPostsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
postId SortOrder No
skillId SortOrder No

SkillsOnUsersSkillIdUserIdCompoundUniqueInput

Name Type Nullable
skillId String No
userId String No

SkillsOnUsersCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
userId SortOrder No

SkillsOnUsersMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
userId SortOrder No

SkillsOnUsersMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
userId SortOrder No

DesiredSkillsOnUsersSkillIdUserIdCompoundUniqueInput

Name Type Nullable
skillId String No
userId String No

DesiredSkillsOnUsersCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
userId SortOrder No

DesiredSkillsOnUsersMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
userId SortOrder No

DesiredSkillsOnUsersMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
userId SortOrder No

RepositoryNameOwnerCompoundUniqueInput

Name Type Nullable
name String No
owner String No

RepositoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
owner SortOrder No

RepositoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
owner SortOrder No

RepositoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
owner SortOrder No

RepositoryRelationFilter

Name Type Nullable
is RepositoryWhereInput No
isNot RepositoryWhereInput No

SkillsOnRepositoriesSkillIdRepositoryIdCompoundUniqueInput

Name Type Nullable
skillId String No
repositoryId String No

SkillsOnRepositoriesCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
repositoryId SortOrder No

SkillsOnRepositoriesMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
repositoryId SortOrder No

SkillsOnRepositoriesMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
skillId SortOrder No
repositoryId SortOrder No

OrganizationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

OrganizationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

OrganizationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

StringNullableListFilter

Name Type Nullable
equals String | Null Yes
has String | Null Yes
hasEvery String No
hasSome String No
isEmpty Boolean No

OrganizationRelationFilter

Name Type Nullable
is OrganizationWhereInput No
isNot OrganizationWhereInput No

EnumExperienceTypeNullableFilter

Name Type Nullable
equals ExperienceType | Null Yes
in ExperienceType[] | Null Yes
notIn ExperienceType[] | Null Yes
not ExperienceType | NestedEnumExperienceTypeNullableFilter | Null Yes

ExperienceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
endDate SortOrder No
highlights SortOrder No
location SortOrder No
organizationName SortOrder No
positionName SortOrder No
startDate SortOrder No
type SortOrder No
userId SortOrder No

ExperienceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
endDate SortOrder No
location SortOrder No
organizationName SortOrder No
positionName SortOrder No
startDate SortOrder No
type SortOrder No
userId SortOrder No

ExperienceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
endDate SortOrder No
location SortOrder No
organizationName SortOrder No
positionName SortOrder No
startDate SortOrder No
type SortOrder No
userId SortOrder No

EnumExperienceTypeNullableWithAggregatesFilter

Name Type Nullable
equals ExperienceType | Null Yes
in ExperienceType[] | Null Yes
notIn ExperienceType[] | Null Yes
not ExperienceType | NestedEnumExperienceTypeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumExperienceTypeNullableFilter No
_max NestedEnumExperienceTypeNullableFilter No

UserCreateNestedOneWithoutAccountsInput

Name Type Nullable
create UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput No
connectOrCreate UserCreateOrConnectWithoutAccountsInput No
connect UserWhereUniqueInput No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

StringFieldUpdateOperationsInput

Name Type Nullable
set String No


UserCreateNestedOneWithoutSessionsInput

Name Type Nullable
create UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput No
connectOrCreate UserCreateOrConnectWithoutSessionsInput No
connect UserWhereUniqueInput No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No






































NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

AccountUpdateManyWithoutUserInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

UserActivityUpdateManyWithoutUserInput

Name Type Nullable
create UserActivityCreateWithoutUserInput | UserActivityCreateWithoutUserInput[] | UserActivityUncheckedCreateWithoutUserInput | UserActivityUncheckedCreateWithoutUserInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutUserInput | UserActivityCreateOrConnectWithoutUserInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutUserInput | UserActivityUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserActivityCreateManyUserInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutUserInput | UserActivityUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutUserInput | UserActivityUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No

ChatsOnUsersUpdateManyWithoutUserInput

Name Type Nullable
create ChatsOnUsersCreateWithoutUserInput | ChatsOnUsersCreateWithoutUserInput[] | ChatsOnUsersUncheckedCreateWithoutUserInput | ChatsOnUsersUncheckedCreateWithoutUserInput[] No
connectOrCreate ChatsOnUsersCreateOrConnectWithoutUserInput | ChatsOnUsersCreateOrConnectWithoutUserInput[] No
upsert ChatsOnUsersUpsertWithWhereUniqueWithoutUserInput | ChatsOnUsersUpsertWithWhereUniqueWithoutUserInput[] No
createMany ChatsOnUsersCreateManyUserInputEnvelope No
set ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
disconnect ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
delete ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
connect ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
update ChatsOnUsersUpdateWithWhereUniqueWithoutUserInput | ChatsOnUsersUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ChatsOnUsersUpdateManyWithWhereWithoutUserInput | ChatsOnUsersUpdateManyWithWhereWithoutUserInput[] No
deleteMany ChatsOnUsersScalarWhereInput | ChatsOnUsersScalarWhereInput[] No

ChatMessageUpdateManyWithoutSenderInput

Name Type Nullable
create ChatMessageCreateWithoutSenderInput | ChatMessageCreateWithoutSenderInput[] | ChatMessageUncheckedCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput[] No
connectOrCreate ChatMessageCreateOrConnectWithoutSenderInput | ChatMessageCreateOrConnectWithoutSenderInput[] No
upsert ChatMessageUpsertWithWhereUniqueWithoutSenderInput | ChatMessageUpsertWithWhereUniqueWithoutSenderInput[] No
createMany ChatMessageCreateManySenderInputEnvelope No
set ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
disconnect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
delete ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
connect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
update ChatMessageUpdateWithWhereUniqueWithoutSenderInput | ChatMessageUpdateWithWhereUniqueWithoutSenderInput[] No
updateMany ChatMessageUpdateManyWithWhereWithoutSenderInput | ChatMessageUpdateManyWithWhereWithoutSenderInput[] No
deleteMany ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No

CommentUpdateManyWithoutAuthorInput

Name Type Nullable
create CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] No
connectOrCreate CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] No
upsert CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany CommentCreateManyAuthorInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

DesiredSkillsOnUsersUpdateManyWithoutUserInput

Name Type Nullable
create DesiredSkillsOnUsersCreateWithoutUserInput | DesiredSkillsOnUsersCreateWithoutUserInput[] | DesiredSkillsOnUsersUncheckedCreateWithoutUserInput | DesiredSkillsOnUsersUncheckedCreateWithoutUserInput[] No
connectOrCreate DesiredSkillsOnUsersCreateOrConnectWithoutUserInput | DesiredSkillsOnUsersCreateOrConnectWithoutUserInput[] No
upsert DesiredSkillsOnUsersUpsertWithWhereUniqueWithoutUserInput | DesiredSkillsOnUsersUpsertWithWhereUniqueWithoutUserInput[] No
createMany DesiredSkillsOnUsersCreateManyUserInputEnvelope No
set DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
disconnect DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
delete DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
connect DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
update DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutUserInput | DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutUserInput[] No
updateMany DesiredSkillsOnUsersUpdateManyWithWhereWithoutUserInput | DesiredSkillsOnUsersUpdateManyWithWhereWithoutUserInput[] No
deleteMany DesiredSkillsOnUsersScalarWhereInput | DesiredSkillsOnUsersScalarWhereInput[] No

ExperienceUpdateManyWithoutUserInput

Name Type Nullable
create ExperienceCreateWithoutUserInput | ExperienceCreateWithoutUserInput[] | ExperienceUncheckedCreateWithoutUserInput | ExperienceUncheckedCreateWithoutUserInput[] No
connectOrCreate ExperienceCreateOrConnectWithoutUserInput | ExperienceCreateOrConnectWithoutUserInput[] No
upsert ExperienceUpsertWithWhereUniqueWithoutUserInput | ExperienceUpsertWithWhereUniqueWithoutUserInput[] No
createMany ExperienceCreateManyUserInputEnvelope No
set ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
disconnect ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
delete ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
connect ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
update ExperienceUpdateWithWhereUniqueWithoutUserInput | ExperienceUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ExperienceUpdateManyWithWhereWithoutUserInput | ExperienceUpdateManyWithWhereWithoutUserInput[] No
deleteMany ExperienceScalarWhereInput | ExperienceScalarWhereInput[] No

FollowUserUpdateManyWithoutFollowingInput

Name Type Nullable
create FollowUserCreateWithoutFollowingInput | FollowUserCreateWithoutFollowingInput[] | FollowUserUncheckedCreateWithoutFollowingInput | FollowUserUncheckedCreateWithoutFollowingInput[] No
connectOrCreate FollowUserCreateOrConnectWithoutFollowingInput | FollowUserCreateOrConnectWithoutFollowingInput[] No
upsert FollowUserUpsertWithWhereUniqueWithoutFollowingInput | FollowUserUpsertWithWhereUniqueWithoutFollowingInput[] No
createMany FollowUserCreateManyFollowingInputEnvelope No
set FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
disconnect FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
delete FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
connect FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
update FollowUserUpdateWithWhereUniqueWithoutFollowingInput | FollowUserUpdateWithWhereUniqueWithoutFollowingInput[] No
updateMany FollowUserUpdateManyWithWhereWithoutFollowingInput | FollowUserUpdateManyWithWhereWithoutFollowingInput[] No
deleteMany FollowUserScalarWhereInput | FollowUserScalarWhereInput[] No

FollowSkillUpdateManyWithoutFollowerInput

Name Type Nullable
create FollowSkillCreateWithoutFollowerInput | FollowSkillCreateWithoutFollowerInput[] | FollowSkillUncheckedCreateWithoutFollowerInput | FollowSkillUncheckedCreateWithoutFollowerInput[] No
connectOrCreate FollowSkillCreateOrConnectWithoutFollowerInput | FollowSkillCreateOrConnectWithoutFollowerInput[] No
upsert FollowSkillUpsertWithWhereUniqueWithoutFollowerInput | FollowSkillUpsertWithWhereUniqueWithoutFollowerInput[] No
createMany FollowSkillCreateManyFollowerInputEnvelope No
set FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
disconnect FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
delete FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
connect FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
update FollowSkillUpdateWithWhereUniqueWithoutFollowerInput | FollowSkillUpdateWithWhereUniqueWithoutFollowerInput[] No
updateMany FollowSkillUpdateManyWithWhereWithoutFollowerInput | FollowSkillUpdateManyWithWhereWithoutFollowerInput[] No
deleteMany FollowSkillScalarWhereInput | FollowSkillScalarWhereInput[] No

FollowUserUpdateManyWithoutFollowerInput

Name Type Nullable
create FollowUserCreateWithoutFollowerInput | FollowUserCreateWithoutFollowerInput[] | FollowUserUncheckedCreateWithoutFollowerInput | FollowUserUncheckedCreateWithoutFollowerInput[] No
connectOrCreate FollowUserCreateOrConnectWithoutFollowerInput | FollowUserCreateOrConnectWithoutFollowerInput[] No
upsert FollowUserUpsertWithWhereUniqueWithoutFollowerInput | FollowUserUpsertWithWhereUniqueWithoutFollowerInput[] No
createMany FollowUserCreateManyFollowerInputEnvelope No
set FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
disconnect FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
delete FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
connect FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
update FollowUserUpdateWithWhereUniqueWithoutFollowerInput | FollowUserUpdateWithWhereUniqueWithoutFollowerInput[] No
updateMany FollowUserUpdateManyWithWhereWithoutFollowerInput | FollowUserUpdateManyWithWhereWithoutFollowerInput[] No
deleteMany FollowUserScalarWhereInput | FollowUserScalarWhereInput[] No

FriendshipUpdateManyWithoutFriendingInput

Name Type Nullable
create FriendshipCreateWithoutFriendingInput | FriendshipCreateWithoutFriendingInput[] | FriendshipUncheckedCreateWithoutFriendingInput | FriendshipUncheckedCreateWithoutFriendingInput[] No
connectOrCreate FriendshipCreateOrConnectWithoutFriendingInput | FriendshipCreateOrConnectWithoutFriendingInput[] No
upsert FriendshipUpsertWithWhereUniqueWithoutFriendingInput | FriendshipUpsertWithWhereUniqueWithoutFriendingInput[] No
createMany FriendshipCreateManyFriendingInputEnvelope No
set FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
disconnect FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
delete FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
connect FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
update FriendshipUpdateWithWhereUniqueWithoutFriendingInput | FriendshipUpdateWithWhereUniqueWithoutFriendingInput[] No
updateMany FriendshipUpdateManyWithWhereWithoutFriendingInput | FriendshipUpdateManyWithWhereWithoutFriendingInput[] No
deleteMany FriendshipScalarWhereInput | FriendshipScalarWhereInput[] No

FriendshipUpdateManyWithoutFrienderInput

Name Type Nullable
create FriendshipCreateWithoutFrienderInput | FriendshipCreateWithoutFrienderInput[] | FriendshipUncheckedCreateWithoutFrienderInput | FriendshipUncheckedCreateWithoutFrienderInput[] No
connectOrCreate FriendshipCreateOrConnectWithoutFrienderInput | FriendshipCreateOrConnectWithoutFrienderInput[] No
upsert FriendshipUpsertWithWhereUniqueWithoutFrienderInput | FriendshipUpsertWithWhereUniqueWithoutFrienderInput[] No
createMany FriendshipCreateManyFrienderInputEnvelope No
set FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
disconnect FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
delete FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
connect FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
update FriendshipUpdateWithWhereUniqueWithoutFrienderInput | FriendshipUpdateWithWhereUniqueWithoutFrienderInput[] No
updateMany FriendshipUpdateManyWithWhereWithoutFrienderInput | FriendshipUpdateManyWithWhereWithoutFrienderInput[] No
deleteMany FriendshipScalarWhereInput | FriendshipScalarWhereInput[] No

PostUpdateManyWithoutAuthorInput

Name Type Nullable
create PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] No
connectOrCreate PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] No
upsert PostUpsertWithWhereUniqueWithoutAuthorInput | PostUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany PostCreateManyAuthorInputEnvelope No
set PostWhereUniqueInput | PostWhereUniqueInput[] No
disconnect PostWhereUniqueInput | PostWhereUniqueInput[] No
delete PostWhereUniqueInput | PostWhereUniqueInput[] No
connect PostWhereUniqueInput | PostWhereUniqueInput[] No
update PostUpdateWithWhereUniqueWithoutAuthorInput | PostUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany PostUpdateManyWithWhereWithoutAuthorInput | PostUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany PostScalarWhereInput | PostScalarWhereInput[] No

RepositoryUpdateManyWithoutUserInput

Name Type Nullable
create RepositoryCreateWithoutUserInput | RepositoryCreateWithoutUserInput[] | RepositoryUncheckedCreateWithoutUserInput | RepositoryUncheckedCreateWithoutUserInput[] No
connectOrCreate RepositoryCreateOrConnectWithoutUserInput | RepositoryCreateOrConnectWithoutUserInput[] No
upsert RepositoryUpsertWithWhereUniqueWithoutUserInput | RepositoryUpsertWithWhereUniqueWithoutUserInput[] No
createMany RepositoryCreateManyUserInputEnvelope No
set RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] No
disconnect RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] No
delete RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] No
connect RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] No
update RepositoryUpdateWithWhereUniqueWithoutUserInput | RepositoryUpdateWithWhereUniqueWithoutUserInput[] No
updateMany RepositoryUpdateManyWithWhereWithoutUserInput | RepositoryUpdateManyWithWhereWithoutUserInput[] No
deleteMany RepositoryScalarWhereInput | RepositoryScalarWhereInput[] No

SessionUpdateManyWithoutUserInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

SkillsOnUsersUpdateManyWithoutUserInput

Name Type Nullable
create SkillsOnUsersCreateWithoutUserInput | SkillsOnUsersCreateWithoutUserInput[] | SkillsOnUsersUncheckedCreateWithoutUserInput | SkillsOnUsersUncheckedCreateWithoutUserInput[] No
connectOrCreate SkillsOnUsersCreateOrConnectWithoutUserInput | SkillsOnUsersCreateOrConnectWithoutUserInput[] No
upsert SkillsOnUsersUpsertWithWhereUniqueWithoutUserInput | SkillsOnUsersUpsertWithWhereUniqueWithoutUserInput[] No
createMany SkillsOnUsersCreateManyUserInputEnvelope No
set SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
disconnect SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
delete SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
connect SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
update SkillsOnUsersUpdateWithWhereUniqueWithoutUserInput | SkillsOnUsersUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SkillsOnUsersUpdateManyWithWhereWithoutUserInput | SkillsOnUsersUpdateManyWithWhereWithoutUserInput[] No
deleteMany SkillsOnUsersScalarWhereInput | SkillsOnUsersScalarWhereInput[] No

CommentUpvoterUpdateManyWithoutUserInput

Name Type Nullable
create CommentUpvoterCreateWithoutUserInput | CommentUpvoterCreateWithoutUserInput[] | CommentUpvoterUncheckedCreateWithoutUserInput | CommentUpvoterUncheckedCreateWithoutUserInput[] No
connectOrCreate CommentUpvoterCreateOrConnectWithoutUserInput | CommentUpvoterCreateOrConnectWithoutUserInput[] No
upsert CommentUpvoterUpsertWithWhereUniqueWithoutUserInput | CommentUpvoterUpsertWithWhereUniqueWithoutUserInput[] No
createMany CommentUpvoterCreateManyUserInputEnvelope No
set CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
disconnect CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
delete CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
connect CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
update CommentUpvoterUpdateWithWhereUniqueWithoutUserInput | CommentUpvoterUpdateWithWhereUniqueWithoutUserInput[] No
updateMany CommentUpvoterUpdateManyWithWhereWithoutUserInput | CommentUpvoterUpdateManyWithWhereWithoutUserInput[] No
deleteMany CommentUpvoterScalarWhereInput | CommentUpvoterScalarWhereInput[] No

PostUpvoterUpdateManyWithoutUserInput

Name Type Nullable
create PostUpvoterCreateWithoutUserInput | PostUpvoterCreateWithoutUserInput[] | PostUpvoterUncheckedCreateWithoutUserInput | PostUpvoterUncheckedCreateWithoutUserInput[] No
connectOrCreate PostUpvoterCreateOrConnectWithoutUserInput | PostUpvoterCreateOrConnectWithoutUserInput[] No
upsert PostUpvoterUpsertWithWhereUniqueWithoutUserInput | PostUpvoterUpsertWithWhereUniqueWithoutUserInput[] No
createMany PostUpvoterCreateManyUserInputEnvelope No
set PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
disconnect PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
delete PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
connect PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
update PostUpvoterUpdateWithWhereUniqueWithoutUserInput | PostUpvoterUpdateWithWhereUniqueWithoutUserInput[] No
updateMany PostUpvoterUpdateManyWithWhereWithoutUserInput | PostUpvoterUpdateManyWithWhereWithoutUserInput[] No
deleteMany PostUpvoterScalarWhereInput | PostUpvoterScalarWhereInput[] No

AccountUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

UserActivityUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create UserActivityCreateWithoutUserInput | UserActivityCreateWithoutUserInput[] | UserActivityUncheckedCreateWithoutUserInput | UserActivityUncheckedCreateWithoutUserInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutUserInput | UserActivityCreateOrConnectWithoutUserInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutUserInput | UserActivityUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserActivityCreateManyUserInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutUserInput | UserActivityUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutUserInput | UserActivityUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No

ChatsOnUsersUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create ChatsOnUsersCreateWithoutUserInput | ChatsOnUsersCreateWithoutUserInput[] | ChatsOnUsersUncheckedCreateWithoutUserInput | ChatsOnUsersUncheckedCreateWithoutUserInput[] No
connectOrCreate ChatsOnUsersCreateOrConnectWithoutUserInput | ChatsOnUsersCreateOrConnectWithoutUserInput[] No
upsert ChatsOnUsersUpsertWithWhereUniqueWithoutUserInput | ChatsOnUsersUpsertWithWhereUniqueWithoutUserInput[] No
createMany ChatsOnUsersCreateManyUserInputEnvelope No
set ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
disconnect ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
delete ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
connect ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
update ChatsOnUsersUpdateWithWhereUniqueWithoutUserInput | ChatsOnUsersUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ChatsOnUsersUpdateManyWithWhereWithoutUserInput | ChatsOnUsersUpdateManyWithWhereWithoutUserInput[] No
deleteMany ChatsOnUsersScalarWhereInput | ChatsOnUsersScalarWhereInput[] No

ChatMessageUncheckedUpdateManyWithoutSenderInput

Name Type Nullable
create ChatMessageCreateWithoutSenderInput | ChatMessageCreateWithoutSenderInput[] | ChatMessageUncheckedCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput[] No
connectOrCreate ChatMessageCreateOrConnectWithoutSenderInput | ChatMessageCreateOrConnectWithoutSenderInput[] No
upsert ChatMessageUpsertWithWhereUniqueWithoutSenderInput | ChatMessageUpsertWithWhereUniqueWithoutSenderInput[] No
createMany ChatMessageCreateManySenderInputEnvelope No
set ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
disconnect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
delete ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
connect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
update ChatMessageUpdateWithWhereUniqueWithoutSenderInput | ChatMessageUpdateWithWhereUniqueWithoutSenderInput[] No
updateMany ChatMessageUpdateManyWithWhereWithoutSenderInput | ChatMessageUpdateManyWithWhereWithoutSenderInput[] No
deleteMany ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No

CommentUncheckedUpdateManyWithoutAuthorInput

Name Type Nullable
create CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] No
connectOrCreate CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] No
upsert CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany CommentCreateManyAuthorInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create DesiredSkillsOnUsersCreateWithoutUserInput | DesiredSkillsOnUsersCreateWithoutUserInput[] | DesiredSkillsOnUsersUncheckedCreateWithoutUserInput | DesiredSkillsOnUsersUncheckedCreateWithoutUserInput[] No
connectOrCreate DesiredSkillsOnUsersCreateOrConnectWithoutUserInput | DesiredSkillsOnUsersCreateOrConnectWithoutUserInput[] No
upsert DesiredSkillsOnUsersUpsertWithWhereUniqueWithoutUserInput | DesiredSkillsOnUsersUpsertWithWhereUniqueWithoutUserInput[] No
createMany DesiredSkillsOnUsersCreateManyUserInputEnvelope No
set DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
disconnect DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
delete DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
connect DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
update DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutUserInput | DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutUserInput[] No
updateMany DesiredSkillsOnUsersUpdateManyWithWhereWithoutUserInput | DesiredSkillsOnUsersUpdateManyWithWhereWithoutUserInput[] No
deleteMany DesiredSkillsOnUsersScalarWhereInput | DesiredSkillsOnUsersScalarWhereInput[] No

ExperienceUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create ExperienceCreateWithoutUserInput | ExperienceCreateWithoutUserInput[] | ExperienceUncheckedCreateWithoutUserInput | ExperienceUncheckedCreateWithoutUserInput[] No
connectOrCreate ExperienceCreateOrConnectWithoutUserInput | ExperienceCreateOrConnectWithoutUserInput[] No
upsert ExperienceUpsertWithWhereUniqueWithoutUserInput | ExperienceUpsertWithWhereUniqueWithoutUserInput[] No
createMany ExperienceCreateManyUserInputEnvelope No
set ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
disconnect ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
delete ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
connect ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
update ExperienceUpdateWithWhereUniqueWithoutUserInput | ExperienceUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ExperienceUpdateManyWithWhereWithoutUserInput | ExperienceUpdateManyWithWhereWithoutUserInput[] No
deleteMany ExperienceScalarWhereInput | ExperienceScalarWhereInput[] No

FollowUserUncheckedUpdateManyWithoutFollowingInput

Name Type Nullable
create FollowUserCreateWithoutFollowingInput | FollowUserCreateWithoutFollowingInput[] | FollowUserUncheckedCreateWithoutFollowingInput | FollowUserUncheckedCreateWithoutFollowingInput[] No
connectOrCreate FollowUserCreateOrConnectWithoutFollowingInput | FollowUserCreateOrConnectWithoutFollowingInput[] No
upsert FollowUserUpsertWithWhereUniqueWithoutFollowingInput | FollowUserUpsertWithWhereUniqueWithoutFollowingInput[] No
createMany FollowUserCreateManyFollowingInputEnvelope No
set FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
disconnect FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
delete FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
connect FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
update FollowUserUpdateWithWhereUniqueWithoutFollowingInput | FollowUserUpdateWithWhereUniqueWithoutFollowingInput[] No
updateMany FollowUserUpdateManyWithWhereWithoutFollowingInput | FollowUserUpdateManyWithWhereWithoutFollowingInput[] No
deleteMany FollowUserScalarWhereInput | FollowUserScalarWhereInput[] No

FollowSkillUncheckedUpdateManyWithoutFollowerInput

Name Type Nullable
create FollowSkillCreateWithoutFollowerInput | FollowSkillCreateWithoutFollowerInput[] | FollowSkillUncheckedCreateWithoutFollowerInput | FollowSkillUncheckedCreateWithoutFollowerInput[] No
connectOrCreate FollowSkillCreateOrConnectWithoutFollowerInput | FollowSkillCreateOrConnectWithoutFollowerInput[] No
upsert FollowSkillUpsertWithWhereUniqueWithoutFollowerInput | FollowSkillUpsertWithWhereUniqueWithoutFollowerInput[] No
createMany FollowSkillCreateManyFollowerInputEnvelope No
set FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
disconnect FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
delete FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
connect FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
update FollowSkillUpdateWithWhereUniqueWithoutFollowerInput | FollowSkillUpdateWithWhereUniqueWithoutFollowerInput[] No
updateMany FollowSkillUpdateManyWithWhereWithoutFollowerInput | FollowSkillUpdateManyWithWhereWithoutFollowerInput[] No
deleteMany FollowSkillScalarWhereInput | FollowSkillScalarWhereInput[] No

FollowUserUncheckedUpdateManyWithoutFollowerInput

Name Type Nullable
create FollowUserCreateWithoutFollowerInput | FollowUserCreateWithoutFollowerInput[] | FollowUserUncheckedCreateWithoutFollowerInput | FollowUserUncheckedCreateWithoutFollowerInput[] No
connectOrCreate FollowUserCreateOrConnectWithoutFollowerInput | FollowUserCreateOrConnectWithoutFollowerInput[] No
upsert FollowUserUpsertWithWhereUniqueWithoutFollowerInput | FollowUserUpsertWithWhereUniqueWithoutFollowerInput[] No
createMany FollowUserCreateManyFollowerInputEnvelope No
set FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
disconnect FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
delete FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
connect FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] No
update FollowUserUpdateWithWhereUniqueWithoutFollowerInput | FollowUserUpdateWithWhereUniqueWithoutFollowerInput[] No
updateMany FollowUserUpdateManyWithWhereWithoutFollowerInput | FollowUserUpdateManyWithWhereWithoutFollowerInput[] No
deleteMany FollowUserScalarWhereInput | FollowUserScalarWhereInput[] No

FriendshipUncheckedUpdateManyWithoutFriendingInput

Name Type Nullable
create FriendshipCreateWithoutFriendingInput | FriendshipCreateWithoutFriendingInput[] | FriendshipUncheckedCreateWithoutFriendingInput | FriendshipUncheckedCreateWithoutFriendingInput[] No
connectOrCreate FriendshipCreateOrConnectWithoutFriendingInput | FriendshipCreateOrConnectWithoutFriendingInput[] No
upsert FriendshipUpsertWithWhereUniqueWithoutFriendingInput | FriendshipUpsertWithWhereUniqueWithoutFriendingInput[] No
createMany FriendshipCreateManyFriendingInputEnvelope No
set FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
disconnect FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
delete FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
connect FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
update FriendshipUpdateWithWhereUniqueWithoutFriendingInput | FriendshipUpdateWithWhereUniqueWithoutFriendingInput[] No
updateMany FriendshipUpdateManyWithWhereWithoutFriendingInput | FriendshipUpdateManyWithWhereWithoutFriendingInput[] No
deleteMany FriendshipScalarWhereInput | FriendshipScalarWhereInput[] No

FriendshipUncheckedUpdateManyWithoutFrienderInput

Name Type Nullable
create FriendshipCreateWithoutFrienderInput | FriendshipCreateWithoutFrienderInput[] | FriendshipUncheckedCreateWithoutFrienderInput | FriendshipUncheckedCreateWithoutFrienderInput[] No
connectOrCreate FriendshipCreateOrConnectWithoutFrienderInput | FriendshipCreateOrConnectWithoutFrienderInput[] No
upsert FriendshipUpsertWithWhereUniqueWithoutFrienderInput | FriendshipUpsertWithWhereUniqueWithoutFrienderInput[] No
createMany FriendshipCreateManyFrienderInputEnvelope No
set FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
disconnect FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
delete FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
connect FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] No
update FriendshipUpdateWithWhereUniqueWithoutFrienderInput | FriendshipUpdateWithWhereUniqueWithoutFrienderInput[] No
updateMany FriendshipUpdateManyWithWhereWithoutFrienderInput | FriendshipUpdateManyWithWhereWithoutFrienderInput[] No
deleteMany FriendshipScalarWhereInput | FriendshipScalarWhereInput[] No

PostUncheckedUpdateManyWithoutAuthorInput

Name Type Nullable
create PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] No
connectOrCreate PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] No
upsert PostUpsertWithWhereUniqueWithoutAuthorInput | PostUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany PostCreateManyAuthorInputEnvelope No
set PostWhereUniqueInput | PostWhereUniqueInput[] No
disconnect PostWhereUniqueInput | PostWhereUniqueInput[] No
delete PostWhereUniqueInput | PostWhereUniqueInput[] No
connect PostWhereUniqueInput | PostWhereUniqueInput[] No
update PostUpdateWithWhereUniqueWithoutAuthorInput | PostUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany PostUpdateManyWithWhereWithoutAuthorInput | PostUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany PostScalarWhereInput | PostScalarWhereInput[] No

RepositoryUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create RepositoryCreateWithoutUserInput | RepositoryCreateWithoutUserInput[] | RepositoryUncheckedCreateWithoutUserInput | RepositoryUncheckedCreateWithoutUserInput[] No
connectOrCreate RepositoryCreateOrConnectWithoutUserInput | RepositoryCreateOrConnectWithoutUserInput[] No
upsert RepositoryUpsertWithWhereUniqueWithoutUserInput | RepositoryUpsertWithWhereUniqueWithoutUserInput[] No
createMany RepositoryCreateManyUserInputEnvelope No
set RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] No
disconnect RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] No
delete RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] No
connect RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] No
update RepositoryUpdateWithWhereUniqueWithoutUserInput | RepositoryUpdateWithWhereUniqueWithoutUserInput[] No
updateMany RepositoryUpdateManyWithWhereWithoutUserInput | RepositoryUpdateManyWithWhereWithoutUserInput[] No
deleteMany RepositoryScalarWhereInput | RepositoryScalarWhereInput[] No

SessionUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

SkillsOnUsersUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create SkillsOnUsersCreateWithoutUserInput | SkillsOnUsersCreateWithoutUserInput[] | SkillsOnUsersUncheckedCreateWithoutUserInput | SkillsOnUsersUncheckedCreateWithoutUserInput[] No
connectOrCreate SkillsOnUsersCreateOrConnectWithoutUserInput | SkillsOnUsersCreateOrConnectWithoutUserInput[] No
upsert SkillsOnUsersUpsertWithWhereUniqueWithoutUserInput | SkillsOnUsersUpsertWithWhereUniqueWithoutUserInput[] No
createMany SkillsOnUsersCreateManyUserInputEnvelope No
set SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
disconnect SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
delete SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
connect SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
update SkillsOnUsersUpdateWithWhereUniqueWithoutUserInput | SkillsOnUsersUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SkillsOnUsersUpdateManyWithWhereWithoutUserInput | SkillsOnUsersUpdateManyWithWhereWithoutUserInput[] No
deleteMany SkillsOnUsersScalarWhereInput | SkillsOnUsersScalarWhereInput[] No

CommentUpvoterUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create CommentUpvoterCreateWithoutUserInput | CommentUpvoterCreateWithoutUserInput[] | CommentUpvoterUncheckedCreateWithoutUserInput | CommentUpvoterUncheckedCreateWithoutUserInput[] No
connectOrCreate CommentUpvoterCreateOrConnectWithoutUserInput | CommentUpvoterCreateOrConnectWithoutUserInput[] No
upsert CommentUpvoterUpsertWithWhereUniqueWithoutUserInput | CommentUpvoterUpsertWithWhereUniqueWithoutUserInput[] No
createMany CommentUpvoterCreateManyUserInputEnvelope No
set CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
disconnect CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
delete CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
connect CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
update CommentUpvoterUpdateWithWhereUniqueWithoutUserInput | CommentUpvoterUpdateWithWhereUniqueWithoutUserInput[] No
updateMany CommentUpvoterUpdateManyWithWhereWithoutUserInput | CommentUpvoterUpdateManyWithWhereWithoutUserInput[] No
deleteMany CommentUpvoterScalarWhereInput | CommentUpvoterScalarWhereInput[] No

PostUpvoterUncheckedUpdateManyWithoutUserInput

Name Type Nullable
create PostUpvoterCreateWithoutUserInput | PostUpvoterCreateWithoutUserInput[] | PostUpvoterUncheckedCreateWithoutUserInput | PostUpvoterUncheckedCreateWithoutUserInput[] No
connectOrCreate PostUpvoterCreateOrConnectWithoutUserInput | PostUpvoterCreateOrConnectWithoutUserInput[] No
upsert PostUpvoterUpsertWithWhereUniqueWithoutUserInput | PostUpvoterUpsertWithWhereUniqueWithoutUserInput[] No
createMany PostUpvoterCreateManyUserInputEnvelope No
set PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
disconnect PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
delete PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
connect PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
update PostUpvoterUpdateWithWhereUniqueWithoutUserInput | PostUpvoterUpdateWithWhereUniqueWithoutUserInput[] No
updateMany PostUpvoterUpdateManyWithWhereWithoutUserInput | PostUpvoterUpdateManyWithWhereWithoutUserInput[] No
deleteMany PostUpvoterScalarWhereInput | PostUpvoterScalarWhereInput[] No

CommentCreateNestedOneWithoutActivitiesInput

Name Type Nullable
create CommentCreateWithoutActivitiesInput | CommentUncheckedCreateWithoutActivitiesInput No
connectOrCreate CommentCreateOrConnectWithoutActivitiesInput No
connect CommentWhereUniqueInput No

FollowCreateNestedOneWithoutActivitiesInput

Name Type Nullable
create FollowCreateWithoutActivitiesInput | FollowUncheckedCreateWithoutActivitiesInput No
connectOrCreate FollowCreateOrConnectWithoutActivitiesInput No
connect FollowWhereUniqueInput No

FriendshipCreateNestedOneWithoutActivitiesInput

Name Type Nullable
create FriendshipCreateWithoutActivitiesInput | FriendshipUncheckedCreateWithoutActivitiesInput No
connectOrCreate FriendshipCreateOrConnectWithoutActivitiesInput No
connect FriendshipWhereUniqueInput No

PostCreateNestedOneWithoutActivitiesInput

Name Type Nullable
create PostCreateWithoutActivitiesInput | PostUncheckedCreateWithoutActivitiesInput No
connectOrCreate PostCreateOrConnectWithoutActivitiesInput No
connect PostWhereUniqueInput No

UserCreateNestedOneWithoutActivitiesInput

Name Type Nullable
create UserCreateWithoutActivitiesInput | UserUncheckedCreateWithoutActivitiesInput No
connectOrCreate UserCreateOrConnectWithoutActivitiesInput No
connect UserWhereUniqueInput No

EnumUserActivityTypeFieldUpdateOperationsInput

Name Type Nullable
set UserActivityType No


FollowUpdateOneWithoutActivitiesInput

Name Type Nullable
create FollowCreateWithoutActivitiesInput | FollowUncheckedCreateWithoutActivitiesInput No
connectOrCreate FollowCreateOrConnectWithoutActivitiesInput No
upsert FollowUpsertWithoutActivitiesInput No
disconnect Boolean No
delete Boolean No
connect FollowWhereUniqueInput No
update FollowUpdateWithoutActivitiesInput | FollowUncheckedUpdateWithoutActivitiesInput No


PostUpdateOneWithoutActivitiesInput

Name Type Nullable
create PostCreateWithoutActivitiesInput | PostUncheckedCreateWithoutActivitiesInput No
connectOrCreate PostCreateOrConnectWithoutActivitiesInput No
upsert PostUpsertWithoutActivitiesInput No
disconnect Boolean No
delete Boolean No
connect PostWhereUniqueInput No
update PostUpdateWithoutActivitiesInput | PostUncheckedUpdateWithoutActivitiesInput No



UserCreateNestedOneWithoutFriendingInput

Name Type Nullable
create UserCreateWithoutFriendingInput | UserUncheckedCreateWithoutFriendingInput No
connectOrCreate UserCreateOrConnectWithoutFriendingInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutFriendedByInput

Name Type Nullable
create UserCreateWithoutFriendedByInput | UserUncheckedCreateWithoutFriendedByInput No
connectOrCreate UserCreateOrConnectWithoutFriendedByInput No
connect UserWhereUniqueInput No


BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

UserActivityUpdateManyWithoutFriendshipInput

Name Type Nullable
create UserActivityCreateWithoutFriendshipInput | UserActivityCreateWithoutFriendshipInput[] | UserActivityUncheckedCreateWithoutFriendshipInput | UserActivityUncheckedCreateWithoutFriendshipInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutFriendshipInput | UserActivityCreateOrConnectWithoutFriendshipInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutFriendshipInput | UserActivityUpsertWithWhereUniqueWithoutFriendshipInput[] No
createMany UserActivityCreateManyFriendshipInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutFriendshipInput | UserActivityUpdateWithWhereUniqueWithoutFriendshipInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutFriendshipInput | UserActivityUpdateManyWithWhereWithoutFriendshipInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No



UserActivityUncheckedUpdateManyWithoutFriendshipInput

Name Type Nullable
create UserActivityCreateWithoutFriendshipInput | UserActivityCreateWithoutFriendshipInput[] | UserActivityUncheckedCreateWithoutFriendshipInput | UserActivityUncheckedCreateWithoutFriendshipInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutFriendshipInput | UserActivityCreateOrConnectWithoutFriendshipInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutFriendshipInput | UserActivityUpsertWithWhereUniqueWithoutFriendshipInput[] No
createMany UserActivityCreateManyFriendshipInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutFriendshipInput | UserActivityUpdateWithWhereUniqueWithoutFriendshipInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutFriendshipInput | UserActivityUpdateManyWithWhereWithoutFriendshipInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No


FollowSkillCreateNestedOneWithoutFollowInput

Name Type Nullable
create FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput No
connectOrCreate FollowSkillCreateOrConnectWithoutFollowInput No
connect FollowSkillWhereUniqueInput No

FollowUserCreateNestedOneWithoutFollowInput

Name Type Nullable
create FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput No
connectOrCreate FollowUserCreateOrConnectWithoutFollowInput No
connect FollowUserWhereUniqueInput No


FollowSkillUncheckedCreateNestedOneWithoutFollowInput

Name Type Nullable
create FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput No
connectOrCreate FollowSkillCreateOrConnectWithoutFollowInput No
connect FollowSkillWhereUniqueInput No

FollowUserUncheckedCreateNestedOneWithoutFollowInput

Name Type Nullable
create FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput No
connectOrCreate FollowUserCreateOrConnectWithoutFollowInput No
connect FollowUserWhereUniqueInput No

UserActivityUpdateManyWithoutFollowInput

Name Type Nullable
create UserActivityCreateWithoutFollowInput | UserActivityCreateWithoutFollowInput[] | UserActivityUncheckedCreateWithoutFollowInput | UserActivityUncheckedCreateWithoutFollowInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutFollowInput | UserActivityCreateOrConnectWithoutFollowInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutFollowInput | UserActivityUpsertWithWhereUniqueWithoutFollowInput[] No
createMany UserActivityCreateManyFollowInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutFollowInput | UserActivityUpdateWithWhereUniqueWithoutFollowInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutFollowInput | UserActivityUpdateManyWithWhereWithoutFollowInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No



UserActivityUncheckedUpdateManyWithoutFollowInput

Name Type Nullable
create UserActivityCreateWithoutFollowInput | UserActivityCreateWithoutFollowInput[] | UserActivityUncheckedCreateWithoutFollowInput | UserActivityUncheckedCreateWithoutFollowInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutFollowInput | UserActivityCreateOrConnectWithoutFollowInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutFollowInput | UserActivityUpsertWithWhereUniqueWithoutFollowInput[] No
createMany UserActivityCreateManyFollowInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutFollowInput | UserActivityUpdateWithWhereUniqueWithoutFollowInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutFollowInput | UserActivityUpdateManyWithWhereWithoutFollowInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No

FollowSkillUncheckedUpdateOneWithoutFollowInput

Name Type Nullable
create FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput No
connectOrCreate FollowSkillCreateOrConnectWithoutFollowInput No
upsert FollowSkillUpsertWithoutFollowInput No
disconnect Boolean No
delete Boolean No
connect FollowSkillWhereUniqueInput No
update FollowSkillUpdateWithoutFollowInput | FollowSkillUncheckedUpdateWithoutFollowInput No

FollowUserUncheckedUpdateOneWithoutFollowInput

Name Type Nullable
create FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput No
connectOrCreate FollowUserCreateOrConnectWithoutFollowInput No
upsert FollowUserUpsertWithoutFollowInput No
disconnect Boolean No
delete Boolean No
connect FollowUserWhereUniqueInput No
update FollowUserUpdateWithoutFollowInput | FollowUserUncheckedUpdateWithoutFollowInput No

FollowCreateNestedOneWithoutFollowingUserInput

Name Type Nullable
create FollowCreateWithoutFollowingUserInput | FollowUncheckedCreateWithoutFollowingUserInput No
connectOrCreate FollowCreateOrConnectWithoutFollowingUserInput No
connect FollowWhereUniqueInput No

UserCreateNestedOneWithoutFollowingUserInput

Name Type Nullable
create UserCreateWithoutFollowingUserInput | UserUncheckedCreateWithoutFollowingUserInput No
connectOrCreate UserCreateOrConnectWithoutFollowingUserInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutFollowedByInput

Name Type Nullable
create UserCreateWithoutFollowedByInput | UserUncheckedCreateWithoutFollowedByInput No
connectOrCreate UserCreateOrConnectWithoutFollowedByInput No
connect UserWhereUniqueInput No




FollowCreateNestedOneWithoutFollowingSkillInput

Name Type Nullable
create FollowCreateWithoutFollowingSkillInput | FollowUncheckedCreateWithoutFollowingSkillInput No
connectOrCreate FollowCreateOrConnectWithoutFollowingSkillInput No
connect FollowWhereUniqueInput No

UserCreateNestedOneWithoutFollowingSkillInput

Name Type Nullable
create UserCreateWithoutFollowingSkillInput | UserUncheckedCreateWithoutFollowingSkillInput No
connectOrCreate UserCreateOrConnectWithoutFollowingSkillInput No
connect UserWhereUniqueInput No

SkillCreateNestedOneWithoutFollowedByInput

Name Type Nullable
create SkillCreateWithoutFollowedByInput | SkillUncheckedCreateWithoutFollowedByInput No
connectOrCreate SkillCreateOrConnectWithoutFollowedByInput No
connect SkillWhereUniqueInput No








ChatMessageUpdateManyWithoutChatInput

Name Type Nullable
create ChatMessageCreateWithoutChatInput | ChatMessageCreateWithoutChatInput[] | ChatMessageUncheckedCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput[] No
connectOrCreate ChatMessageCreateOrConnectWithoutChatInput | ChatMessageCreateOrConnectWithoutChatInput[] No
upsert ChatMessageUpsertWithWhereUniqueWithoutChatInput | ChatMessageUpsertWithWhereUniqueWithoutChatInput[] No
createMany ChatMessageCreateManyChatInputEnvelope No
set ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
disconnect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
delete ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
connect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
update ChatMessageUpdateWithWhereUniqueWithoutChatInput | ChatMessageUpdateWithWhereUniqueWithoutChatInput[] No
updateMany ChatMessageUpdateManyWithWhereWithoutChatInput | ChatMessageUpdateManyWithWhereWithoutChatInput[] No
deleteMany ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No

ChatsOnUsersUpdateManyWithoutChatInput

Name Type Nullable
create ChatsOnUsersCreateWithoutChatInput | ChatsOnUsersCreateWithoutChatInput[] | ChatsOnUsersUncheckedCreateWithoutChatInput | ChatsOnUsersUncheckedCreateWithoutChatInput[] No
connectOrCreate ChatsOnUsersCreateOrConnectWithoutChatInput | ChatsOnUsersCreateOrConnectWithoutChatInput[] No
upsert ChatsOnUsersUpsertWithWhereUniqueWithoutChatInput | ChatsOnUsersUpsertWithWhereUniqueWithoutChatInput[] No
createMany ChatsOnUsersCreateManyChatInputEnvelope No
set ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
disconnect ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
delete ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
connect ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
update ChatsOnUsersUpdateWithWhereUniqueWithoutChatInput | ChatsOnUsersUpdateWithWhereUniqueWithoutChatInput[] No
updateMany ChatsOnUsersUpdateManyWithWhereWithoutChatInput | ChatsOnUsersUpdateManyWithWhereWithoutChatInput[] No
deleteMany ChatsOnUsersScalarWhereInput | ChatsOnUsersScalarWhereInput[] No

ChatMessageUncheckedUpdateManyWithoutChatInput

Name Type Nullable
create ChatMessageCreateWithoutChatInput | ChatMessageCreateWithoutChatInput[] | ChatMessageUncheckedCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput[] No
connectOrCreate ChatMessageCreateOrConnectWithoutChatInput | ChatMessageCreateOrConnectWithoutChatInput[] No
upsert ChatMessageUpsertWithWhereUniqueWithoutChatInput | ChatMessageUpsertWithWhereUniqueWithoutChatInput[] No
createMany ChatMessageCreateManyChatInputEnvelope No
set ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
disconnect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
delete ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
connect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
update ChatMessageUpdateWithWhereUniqueWithoutChatInput | ChatMessageUpdateWithWhereUniqueWithoutChatInput[] No
updateMany ChatMessageUpdateManyWithWhereWithoutChatInput | ChatMessageUpdateManyWithWhereWithoutChatInput[] No
deleteMany ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No

ChatsOnUsersUncheckedUpdateManyWithoutChatInput

Name Type Nullable
create ChatsOnUsersCreateWithoutChatInput | ChatsOnUsersCreateWithoutChatInput[] | ChatsOnUsersUncheckedCreateWithoutChatInput | ChatsOnUsersUncheckedCreateWithoutChatInput[] No
connectOrCreate ChatsOnUsersCreateOrConnectWithoutChatInput | ChatsOnUsersCreateOrConnectWithoutChatInput[] No
upsert ChatsOnUsersUpsertWithWhereUniqueWithoutChatInput | ChatsOnUsersUpsertWithWhereUniqueWithoutChatInput[] No
createMany ChatsOnUsersCreateManyChatInputEnvelope No
set ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
disconnect ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
delete ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
connect ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] No
update ChatsOnUsersUpdateWithWhereUniqueWithoutChatInput | ChatsOnUsersUpdateWithWhereUniqueWithoutChatInput[] No
updateMany ChatsOnUsersUpdateManyWithWhereWithoutChatInput | ChatsOnUsersUpdateManyWithWhereWithoutChatInput[] No
deleteMany ChatsOnUsersScalarWhereInput | ChatsOnUsersScalarWhereInput[] No

ChatCreateNestedOneWithoutMessagesInput

Name Type Nullable
create ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput No
connectOrCreate ChatCreateOrConnectWithoutMessagesInput No
connect ChatWhereUniqueInput No

UserCreateNestedOneWithoutChatMessagesInput

Name Type Nullable
create UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput No
connectOrCreate UserCreateOrConnectWithoutChatMessagesInput No
connect UserWhereUniqueInput No



ChatCreateNestedOneWithoutUsersInput

Name Type Nullable
create ChatCreateWithoutUsersInput | ChatUncheckedCreateWithoutUsersInput No
connectOrCreate ChatCreateOrConnectWithoutUsersInput No
connect ChatWhereUniqueInput No

UserCreateNestedOneWithoutChatsInput

Name Type Nullable
create UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput No
connectOrCreate UserCreateOrConnectWithoutChatsInput No
connect UserWhereUniqueInput No




UserCreateNestedOneWithoutPostsInput

Name Type Nullable
create UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput No
connectOrCreate UserCreateOrConnectWithoutPostsInput No
connect UserWhereUniqueInput No










UserActivityUpdateManyWithoutPostInput

Name Type Nullable
create UserActivityCreateWithoutPostInput | UserActivityCreateWithoutPostInput[] | UserActivityUncheckedCreateWithoutPostInput | UserActivityUncheckedCreateWithoutPostInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutPostInput | UserActivityCreateOrConnectWithoutPostInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutPostInput | UserActivityUpsertWithWhereUniqueWithoutPostInput[] No
createMany UserActivityCreateManyPostInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutPostInput | UserActivityUpdateWithWhereUniqueWithoutPostInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutPostInput | UserActivityUpdateManyWithWhereWithoutPostInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No


CommentUpdateManyWithoutPostInput

Name Type Nullable
create CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] No
connectOrCreate CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] No
upsert CommentUpsertWithWhereUniqueWithoutPostInput | CommentUpsertWithWhereUniqueWithoutPostInput[] No
createMany CommentCreateManyPostInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutPostInput | CommentUpdateWithWhereUniqueWithoutPostInput[] No
updateMany CommentUpdateManyWithWhereWithoutPostInput | CommentUpdateManyWithWhereWithoutPostInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

PostImageUpdateManyWithoutPostInput

Name Type Nullable
create PostImageCreateWithoutPostInput | PostImageCreateWithoutPostInput[] | PostImageUncheckedCreateWithoutPostInput | PostImageUncheckedCreateWithoutPostInput[] No
connectOrCreate PostImageCreateOrConnectWithoutPostInput | PostImageCreateOrConnectWithoutPostInput[] No
upsert PostImageUpsertWithWhereUniqueWithoutPostInput | PostImageUpsertWithWhereUniqueWithoutPostInput[] No
createMany PostImageCreateManyPostInputEnvelope No
set PostImageWhereUniqueInput | PostImageWhereUniqueInput[] No
disconnect PostImageWhereUniqueInput | PostImageWhereUniqueInput[] No
delete PostImageWhereUniqueInput | PostImageWhereUniqueInput[] No
connect PostImageWhereUniqueInput | PostImageWhereUniqueInput[] No
update PostImageUpdateWithWhereUniqueWithoutPostInput | PostImageUpdateWithWhereUniqueWithoutPostInput[] No
updateMany PostImageUpdateManyWithWhereWithoutPostInput | PostImageUpdateManyWithWhereWithoutPostInput[] No
deleteMany PostImageScalarWhereInput | PostImageScalarWhereInput[] No

SkillsOnPostsUpdateManyWithoutPostInput

Name Type Nullable
create SkillsOnPostsCreateWithoutPostInput | SkillsOnPostsCreateWithoutPostInput[] | SkillsOnPostsUncheckedCreateWithoutPostInput | SkillsOnPostsUncheckedCreateWithoutPostInput[] No
connectOrCreate SkillsOnPostsCreateOrConnectWithoutPostInput | SkillsOnPostsCreateOrConnectWithoutPostInput[] No
upsert SkillsOnPostsUpsertWithWhereUniqueWithoutPostInput | SkillsOnPostsUpsertWithWhereUniqueWithoutPostInput[] No
createMany SkillsOnPostsCreateManyPostInputEnvelope No
set SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
disconnect SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
delete SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
connect SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
update SkillsOnPostsUpdateWithWhereUniqueWithoutPostInput | SkillsOnPostsUpdateWithWhereUniqueWithoutPostInput[] No
updateMany SkillsOnPostsUpdateManyWithWhereWithoutPostInput | SkillsOnPostsUpdateManyWithWhereWithoutPostInput[] No
deleteMany SkillsOnPostsScalarWhereInput | SkillsOnPostsScalarWhereInput[] No

PostUpvoterUpdateManyWithoutPostInput

Name Type Nullable
create PostUpvoterCreateWithoutPostInput | PostUpvoterCreateWithoutPostInput[] | PostUpvoterUncheckedCreateWithoutPostInput | PostUpvoterUncheckedCreateWithoutPostInput[] No
connectOrCreate PostUpvoterCreateOrConnectWithoutPostInput | PostUpvoterCreateOrConnectWithoutPostInput[] No
upsert PostUpvoterUpsertWithWhereUniqueWithoutPostInput | PostUpvoterUpsertWithWhereUniqueWithoutPostInput[] No
createMany PostUpvoterCreateManyPostInputEnvelope No
set PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
disconnect PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
delete PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
connect PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
update PostUpvoterUpdateWithWhereUniqueWithoutPostInput | PostUpvoterUpdateWithWhereUniqueWithoutPostInput[] No
updateMany PostUpvoterUpdateManyWithWhereWithoutPostInput | PostUpvoterUpdateManyWithWhereWithoutPostInput[] No
deleteMany PostUpvoterScalarWhereInput | PostUpvoterScalarWhereInput[] No

UserActivityUncheckedUpdateManyWithoutPostInput

Name Type Nullable
create UserActivityCreateWithoutPostInput | UserActivityCreateWithoutPostInput[] | UserActivityUncheckedCreateWithoutPostInput | UserActivityUncheckedCreateWithoutPostInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutPostInput | UserActivityCreateOrConnectWithoutPostInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutPostInput | UserActivityUpsertWithWhereUniqueWithoutPostInput[] No
createMany UserActivityCreateManyPostInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutPostInput | UserActivityUpdateWithWhereUniqueWithoutPostInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutPostInput | UserActivityUpdateManyWithWhereWithoutPostInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No

CommentUncheckedUpdateManyWithoutPostInput

Name Type Nullable
create CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] No
connectOrCreate CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] No
upsert CommentUpsertWithWhereUniqueWithoutPostInput | CommentUpsertWithWhereUniqueWithoutPostInput[] No
createMany CommentCreateManyPostInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutPostInput | CommentUpdateWithWhereUniqueWithoutPostInput[] No
updateMany CommentUpdateManyWithWhereWithoutPostInput | CommentUpdateManyWithWhereWithoutPostInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

PostImageUncheckedUpdateManyWithoutPostInput

Name Type Nullable
create PostImageCreateWithoutPostInput | PostImageCreateWithoutPostInput[] | PostImageUncheckedCreateWithoutPostInput | PostImageUncheckedCreateWithoutPostInput[] No
connectOrCreate PostImageCreateOrConnectWithoutPostInput | PostImageCreateOrConnectWithoutPostInput[] No
upsert PostImageUpsertWithWhereUniqueWithoutPostInput | PostImageUpsertWithWhereUniqueWithoutPostInput[] No
createMany PostImageCreateManyPostInputEnvelope No
set PostImageWhereUniqueInput | PostImageWhereUniqueInput[] No
disconnect PostImageWhereUniqueInput | PostImageWhereUniqueInput[] No
delete PostImageWhereUniqueInput | PostImageWhereUniqueInput[] No
connect PostImageWhereUniqueInput | PostImageWhereUniqueInput[] No
update PostImageUpdateWithWhereUniqueWithoutPostInput | PostImageUpdateWithWhereUniqueWithoutPostInput[] No
updateMany PostImageUpdateManyWithWhereWithoutPostInput | PostImageUpdateManyWithWhereWithoutPostInput[] No
deleteMany PostImageScalarWhereInput | PostImageScalarWhereInput[] No

SkillsOnPostsUncheckedUpdateManyWithoutPostInput

Name Type Nullable
create SkillsOnPostsCreateWithoutPostInput | SkillsOnPostsCreateWithoutPostInput[] | SkillsOnPostsUncheckedCreateWithoutPostInput | SkillsOnPostsUncheckedCreateWithoutPostInput[] No
connectOrCreate SkillsOnPostsCreateOrConnectWithoutPostInput | SkillsOnPostsCreateOrConnectWithoutPostInput[] No
upsert SkillsOnPostsUpsertWithWhereUniqueWithoutPostInput | SkillsOnPostsUpsertWithWhereUniqueWithoutPostInput[] No
createMany SkillsOnPostsCreateManyPostInputEnvelope No
set SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
disconnect SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
delete SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
connect SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
update SkillsOnPostsUpdateWithWhereUniqueWithoutPostInput | SkillsOnPostsUpdateWithWhereUniqueWithoutPostInput[] No
updateMany SkillsOnPostsUpdateManyWithWhereWithoutPostInput | SkillsOnPostsUpdateManyWithWhereWithoutPostInput[] No
deleteMany SkillsOnPostsScalarWhereInput | SkillsOnPostsScalarWhereInput[] No

PostUpvoterUncheckedUpdateManyWithoutPostInput

Name Type Nullable
create PostUpvoterCreateWithoutPostInput | PostUpvoterCreateWithoutPostInput[] | PostUpvoterUncheckedCreateWithoutPostInput | PostUpvoterUncheckedCreateWithoutPostInput[] No
connectOrCreate PostUpvoterCreateOrConnectWithoutPostInput | PostUpvoterCreateOrConnectWithoutPostInput[] No
upsert PostUpvoterUpsertWithWhereUniqueWithoutPostInput | PostUpvoterUpsertWithWhereUniqueWithoutPostInput[] No
createMany PostUpvoterCreateManyPostInputEnvelope No
set PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
disconnect PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
delete PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
connect PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] No
update PostUpvoterUpdateWithWhereUniqueWithoutPostInput | PostUpvoterUpdateWithWhereUniqueWithoutPostInput[] No
updateMany PostUpvoterUpdateManyWithWhereWithoutPostInput | PostUpvoterUpdateManyWithWhereWithoutPostInput[] No
deleteMany PostUpvoterScalarWhereInput | PostUpvoterScalarWhereInput[] No

PostCreateNestedOneWithoutUpvotersInput

Name Type Nullable
create PostCreateWithoutUpvotersInput | PostUncheckedCreateWithoutUpvotersInput No
connectOrCreate PostCreateOrConnectWithoutUpvotersInput No
connect PostWhereUniqueInput No

UserCreateNestedOneWithoutUpvotedPostsInput

Name Type Nullable
create UserCreateWithoutUpvotedPostsInput | UserUncheckedCreateWithoutUpvotedPostsInput No
connectOrCreate UserCreateOrConnectWithoutUpvotedPostsInput No
connect UserWhereUniqueInput No



PostCreateNestedOneWithoutImagesInput

Name Type Nullable
create PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput No
connectOrCreate PostCreateOrConnectWithoutImagesInput No
connect PostWhereUniqueInput No



UserCreateNestedOneWithoutCommentsInput

Name Type Nullable
create UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput No
connectOrCreate UserCreateOrConnectWithoutCommentsInput No
connect UserWhereUniqueInput No

CommentCreateNestedOneWithoutRepliesInput

Name Type Nullable
create CommentCreateWithoutRepliesInput | CommentUncheckedCreateWithoutRepliesInput No
connectOrCreate CommentCreateOrConnectWithoutRepliesInput No
connect CommentWhereUniqueInput No

PostCreateNestedOneWithoutCommentsInput

Name Type Nullable
create PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput No
connectOrCreate PostCreateOrConnectWithoutCommentsInput No
connect PostWhereUniqueInput No






UserActivityUpdateManyWithoutCommentInput

Name Type Nullable
create UserActivityCreateWithoutCommentInput | UserActivityCreateWithoutCommentInput[] | UserActivityUncheckedCreateWithoutCommentInput | UserActivityUncheckedCreateWithoutCommentInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutCommentInput | UserActivityCreateOrConnectWithoutCommentInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutCommentInput | UserActivityUpsertWithWhereUniqueWithoutCommentInput[] No
createMany UserActivityCreateManyCommentInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutCommentInput | UserActivityUpdateWithWhereUniqueWithoutCommentInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutCommentInput | UserActivityUpdateManyWithWhereWithoutCommentInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No


CommentUpdateOneWithoutRepliesInput

Name Type Nullable
create CommentCreateWithoutRepliesInput | CommentUncheckedCreateWithoutRepliesInput No
connectOrCreate CommentCreateOrConnectWithoutRepliesInput No
upsert CommentUpsertWithoutRepliesInput No
disconnect Boolean No
delete Boolean No
connect CommentWhereUniqueInput No
update CommentUpdateWithoutRepliesInput | CommentUncheckedUpdateWithoutRepliesInput No

PostUpdateOneWithoutCommentsInput

Name Type Nullable
create PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput No
connectOrCreate PostCreateOrConnectWithoutCommentsInput No
upsert PostUpsertWithoutCommentsInput No
disconnect Boolean No
delete Boolean No
connect PostWhereUniqueInput No
update PostUpdateWithoutCommentsInput | PostUncheckedUpdateWithoutCommentsInput No

CommentUpdateManyWithoutParentInput

Name Type Nullable
create CommentCreateWithoutParentInput | CommentCreateWithoutParentInput[] | CommentUncheckedCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput[] No
connectOrCreate CommentCreateOrConnectWithoutParentInput | CommentCreateOrConnectWithoutParentInput[] No
upsert CommentUpsertWithWhereUniqueWithoutParentInput | CommentUpsertWithWhereUniqueWithoutParentInput[] No
createMany CommentCreateManyParentInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutParentInput | CommentUpdateWithWhereUniqueWithoutParentInput[] No
updateMany CommentUpdateManyWithWhereWithoutParentInput | CommentUpdateManyWithWhereWithoutParentInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

CommentUpvoterUpdateManyWithoutCommentInput

Name Type Nullable
create CommentUpvoterCreateWithoutCommentInput | CommentUpvoterCreateWithoutCommentInput[] | CommentUpvoterUncheckedCreateWithoutCommentInput | CommentUpvoterUncheckedCreateWithoutCommentInput[] No
connectOrCreate CommentUpvoterCreateOrConnectWithoutCommentInput | CommentUpvoterCreateOrConnectWithoutCommentInput[] No
upsert CommentUpvoterUpsertWithWhereUniqueWithoutCommentInput | CommentUpvoterUpsertWithWhereUniqueWithoutCommentInput[] No
createMany CommentUpvoterCreateManyCommentInputEnvelope No
set CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
disconnect CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
delete CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
connect CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
update CommentUpvoterUpdateWithWhereUniqueWithoutCommentInput | CommentUpvoterUpdateWithWhereUniqueWithoutCommentInput[] No
updateMany CommentUpvoterUpdateManyWithWhereWithoutCommentInput | CommentUpvoterUpdateManyWithWhereWithoutCommentInput[] No
deleteMany CommentUpvoterScalarWhereInput | CommentUpvoterScalarWhereInput[] No

UserActivityUncheckedUpdateManyWithoutCommentInput

Name Type Nullable
create UserActivityCreateWithoutCommentInput | UserActivityCreateWithoutCommentInput[] | UserActivityUncheckedCreateWithoutCommentInput | UserActivityUncheckedCreateWithoutCommentInput[] No
connectOrCreate UserActivityCreateOrConnectWithoutCommentInput | UserActivityCreateOrConnectWithoutCommentInput[] No
upsert UserActivityUpsertWithWhereUniqueWithoutCommentInput | UserActivityUpsertWithWhereUniqueWithoutCommentInput[] No
createMany UserActivityCreateManyCommentInputEnvelope No
set UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
disconnect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
delete UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
connect UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] No
update UserActivityUpdateWithWhereUniqueWithoutCommentInput | UserActivityUpdateWithWhereUniqueWithoutCommentInput[] No
updateMany UserActivityUpdateManyWithWhereWithoutCommentInput | UserActivityUpdateManyWithWhereWithoutCommentInput[] No
deleteMany UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No

CommentUncheckedUpdateManyWithoutParentInput

Name Type Nullable
create CommentCreateWithoutParentInput | CommentCreateWithoutParentInput[] | CommentUncheckedCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput[] No
connectOrCreate CommentCreateOrConnectWithoutParentInput | CommentCreateOrConnectWithoutParentInput[] No
upsert CommentUpsertWithWhereUniqueWithoutParentInput | CommentUpsertWithWhereUniqueWithoutParentInput[] No
createMany CommentCreateManyParentInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutParentInput | CommentUpdateWithWhereUniqueWithoutParentInput[] No
updateMany CommentUpdateManyWithWhereWithoutParentInput | CommentUpdateManyWithWhereWithoutParentInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

CommentUpvoterUncheckedUpdateManyWithoutCommentInput

Name Type Nullable
create CommentUpvoterCreateWithoutCommentInput | CommentUpvoterCreateWithoutCommentInput[] | CommentUpvoterUncheckedCreateWithoutCommentInput | CommentUpvoterUncheckedCreateWithoutCommentInput[] No
connectOrCreate CommentUpvoterCreateOrConnectWithoutCommentInput | CommentUpvoterCreateOrConnectWithoutCommentInput[] No
upsert CommentUpvoterUpsertWithWhereUniqueWithoutCommentInput | CommentUpvoterUpsertWithWhereUniqueWithoutCommentInput[] No
createMany CommentUpvoterCreateManyCommentInputEnvelope No
set CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
disconnect CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
delete CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
connect CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] No
update CommentUpvoterUpdateWithWhereUniqueWithoutCommentInput | CommentUpvoterUpdateWithWhereUniqueWithoutCommentInput[] No
updateMany CommentUpvoterUpdateManyWithWhereWithoutCommentInput | CommentUpvoterUpdateManyWithWhereWithoutCommentInput[] No
deleteMany CommentUpvoterScalarWhereInput | CommentUpvoterScalarWhereInput[] No

CommentCreateNestedOneWithoutUpvotersInput

Name Type Nullable
create CommentCreateWithoutUpvotersInput | CommentUncheckedCreateWithoutUpvotersInput No
connectOrCreate CommentCreateOrConnectWithoutUpvotersInput No
connect CommentWhereUniqueInput No

UserCreateNestedOneWithoutUpvotedCommentsInput

Name Type Nullable
create UserCreateWithoutUpvotedCommentsInput | UserUncheckedCreateWithoutUpvotedCommentsInput No
connectOrCreate UserCreateOrConnectWithoutUpvotedCommentsInput No
connect UserWhereUniqueInput No













SkillsOnUsersUpdateManyWithoutSkillInput

Name Type Nullable
create SkillsOnUsersCreateWithoutSkillInput | SkillsOnUsersCreateWithoutSkillInput[] | SkillsOnUsersUncheckedCreateWithoutSkillInput | SkillsOnUsersUncheckedCreateWithoutSkillInput[] No
connectOrCreate SkillsOnUsersCreateOrConnectWithoutSkillInput | SkillsOnUsersCreateOrConnectWithoutSkillInput[] No
upsert SkillsOnUsersUpsertWithWhereUniqueWithoutSkillInput | SkillsOnUsersUpsertWithWhereUniqueWithoutSkillInput[] No
createMany SkillsOnUsersCreateManySkillInputEnvelope No
set SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
disconnect SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
delete SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
connect SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
update SkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput | SkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput[] No
updateMany SkillsOnUsersUpdateManyWithWhereWithoutSkillInput | SkillsOnUsersUpdateManyWithWhereWithoutSkillInput[] No
deleteMany SkillsOnUsersScalarWhereInput | SkillsOnUsersScalarWhereInput[] No

DesiredSkillsOnUsersUpdateManyWithoutSkillInput

Name Type Nullable
create DesiredSkillsOnUsersCreateWithoutSkillInput | DesiredSkillsOnUsersCreateWithoutSkillInput[] | DesiredSkillsOnUsersUncheckedCreateWithoutSkillInput | DesiredSkillsOnUsersUncheckedCreateWithoutSkillInput[] No
connectOrCreate DesiredSkillsOnUsersCreateOrConnectWithoutSkillInput | DesiredSkillsOnUsersCreateOrConnectWithoutSkillInput[] No
upsert DesiredSkillsOnUsersUpsertWithWhereUniqueWithoutSkillInput | DesiredSkillsOnUsersUpsertWithWhereUniqueWithoutSkillInput[] No
createMany DesiredSkillsOnUsersCreateManySkillInputEnvelope No
set DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
disconnect DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
delete DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
connect DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
update DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput | DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput[] No
updateMany DesiredSkillsOnUsersUpdateManyWithWhereWithoutSkillInput | DesiredSkillsOnUsersUpdateManyWithWhereWithoutSkillInput[] No
deleteMany DesiredSkillsOnUsersScalarWhereInput | DesiredSkillsOnUsersScalarWhereInput[] No

SkillsOnPostsUpdateManyWithoutSkillInput

Name Type Nullable
create SkillsOnPostsCreateWithoutSkillInput | SkillsOnPostsCreateWithoutSkillInput[] | SkillsOnPostsUncheckedCreateWithoutSkillInput | SkillsOnPostsUncheckedCreateWithoutSkillInput[] No
connectOrCreate SkillsOnPostsCreateOrConnectWithoutSkillInput | SkillsOnPostsCreateOrConnectWithoutSkillInput[] No
upsert SkillsOnPostsUpsertWithWhereUniqueWithoutSkillInput | SkillsOnPostsUpsertWithWhereUniqueWithoutSkillInput[] No
createMany SkillsOnPostsCreateManySkillInputEnvelope No
set SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
disconnect SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
delete SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
connect SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
update SkillsOnPostsUpdateWithWhereUniqueWithoutSkillInput | SkillsOnPostsUpdateWithWhereUniqueWithoutSkillInput[] No
updateMany SkillsOnPostsUpdateManyWithWhereWithoutSkillInput | SkillsOnPostsUpdateManyWithWhereWithoutSkillInput[] No
deleteMany SkillsOnPostsScalarWhereInput | SkillsOnPostsScalarWhereInput[] No

SkillsOnRepositoriesUpdateManyWithoutSkillInput

Name Type Nullable
create SkillsOnRepositoriesCreateWithoutSkillInput | SkillsOnRepositoriesCreateWithoutSkillInput[] | SkillsOnRepositoriesUncheckedCreateWithoutSkillInput | SkillsOnRepositoriesUncheckedCreateWithoutSkillInput[] No
connectOrCreate SkillsOnRepositoriesCreateOrConnectWithoutSkillInput | SkillsOnRepositoriesCreateOrConnectWithoutSkillInput[] No
upsert SkillsOnRepositoriesUpsertWithWhereUniqueWithoutSkillInput | SkillsOnRepositoriesUpsertWithWhereUniqueWithoutSkillInput[] No
createMany SkillsOnRepositoriesCreateManySkillInputEnvelope No
set SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
disconnect SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
delete SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
connect SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
update SkillsOnRepositoriesUpdateWithWhereUniqueWithoutSkillInput | SkillsOnRepositoriesUpdateWithWhereUniqueWithoutSkillInput[] No
updateMany SkillsOnRepositoriesUpdateManyWithWhereWithoutSkillInput | SkillsOnRepositoriesUpdateManyWithWhereWithoutSkillInput[] No
deleteMany SkillsOnRepositoriesScalarWhereInput | SkillsOnRepositoriesScalarWhereInput[] No

FollowSkillUpdateManyWithoutFollowingInput

Name Type Nullable
create FollowSkillCreateWithoutFollowingInput | FollowSkillCreateWithoutFollowingInput[] | FollowSkillUncheckedCreateWithoutFollowingInput | FollowSkillUncheckedCreateWithoutFollowingInput[] No
connectOrCreate FollowSkillCreateOrConnectWithoutFollowingInput | FollowSkillCreateOrConnectWithoutFollowingInput[] No
upsert FollowSkillUpsertWithWhereUniqueWithoutFollowingInput | FollowSkillUpsertWithWhereUniqueWithoutFollowingInput[] No
createMany FollowSkillCreateManyFollowingInputEnvelope No
set FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
disconnect FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
delete FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
connect FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
update FollowSkillUpdateWithWhereUniqueWithoutFollowingInput | FollowSkillUpdateWithWhereUniqueWithoutFollowingInput[] No
updateMany FollowSkillUpdateManyWithWhereWithoutFollowingInput | FollowSkillUpdateManyWithWhereWithoutFollowingInput[] No
deleteMany FollowSkillScalarWhereInput | FollowSkillScalarWhereInput[] No

SkillsOnUsersUncheckedUpdateManyWithoutSkillInput

Name Type Nullable
create SkillsOnUsersCreateWithoutSkillInput | SkillsOnUsersCreateWithoutSkillInput[] | SkillsOnUsersUncheckedCreateWithoutSkillInput | SkillsOnUsersUncheckedCreateWithoutSkillInput[] No
connectOrCreate SkillsOnUsersCreateOrConnectWithoutSkillInput | SkillsOnUsersCreateOrConnectWithoutSkillInput[] No
upsert SkillsOnUsersUpsertWithWhereUniqueWithoutSkillInput | SkillsOnUsersUpsertWithWhereUniqueWithoutSkillInput[] No
createMany SkillsOnUsersCreateManySkillInputEnvelope No
set SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
disconnect SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
delete SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
connect SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] No
update SkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput | SkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput[] No
updateMany SkillsOnUsersUpdateManyWithWhereWithoutSkillInput | SkillsOnUsersUpdateManyWithWhereWithoutSkillInput[] No
deleteMany SkillsOnUsersScalarWhereInput | SkillsOnUsersScalarWhereInput[] No

DesiredSkillsOnUsersUncheckedUpdateManyWithoutSkillInput

Name Type Nullable
create DesiredSkillsOnUsersCreateWithoutSkillInput | DesiredSkillsOnUsersCreateWithoutSkillInput[] | DesiredSkillsOnUsersUncheckedCreateWithoutSkillInput | DesiredSkillsOnUsersUncheckedCreateWithoutSkillInput[] No
connectOrCreate DesiredSkillsOnUsersCreateOrConnectWithoutSkillInput | DesiredSkillsOnUsersCreateOrConnectWithoutSkillInput[] No
upsert DesiredSkillsOnUsersUpsertWithWhereUniqueWithoutSkillInput | DesiredSkillsOnUsersUpsertWithWhereUniqueWithoutSkillInput[] No
createMany DesiredSkillsOnUsersCreateManySkillInputEnvelope No
set DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
disconnect DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
delete DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
connect DesiredSkillsOnUsersWhereUniqueInput | DesiredSkillsOnUsersWhereUniqueInput[] No
update DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput | DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput[] No
updateMany DesiredSkillsOnUsersUpdateManyWithWhereWithoutSkillInput | DesiredSkillsOnUsersUpdateManyWithWhereWithoutSkillInput[] No
deleteMany DesiredSkillsOnUsersScalarWhereInput | DesiredSkillsOnUsersScalarWhereInput[] No

SkillsOnPostsUncheckedUpdateManyWithoutSkillInput

Name Type Nullable
create SkillsOnPostsCreateWithoutSkillInput | SkillsOnPostsCreateWithoutSkillInput[] | SkillsOnPostsUncheckedCreateWithoutSkillInput | SkillsOnPostsUncheckedCreateWithoutSkillInput[] No
connectOrCreate SkillsOnPostsCreateOrConnectWithoutSkillInput | SkillsOnPostsCreateOrConnectWithoutSkillInput[] No
upsert SkillsOnPostsUpsertWithWhereUniqueWithoutSkillInput | SkillsOnPostsUpsertWithWhereUniqueWithoutSkillInput[] No
createMany SkillsOnPostsCreateManySkillInputEnvelope No
set SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
disconnect SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
delete SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
connect SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] No
update SkillsOnPostsUpdateWithWhereUniqueWithoutSkillInput | SkillsOnPostsUpdateWithWhereUniqueWithoutSkillInput[] No
updateMany SkillsOnPostsUpdateManyWithWhereWithoutSkillInput | SkillsOnPostsUpdateManyWithWhereWithoutSkillInput[] No
deleteMany SkillsOnPostsScalarWhereInput | SkillsOnPostsScalarWhereInput[] No

SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillInput

Name Type Nullable
create SkillsOnRepositoriesCreateWithoutSkillInput | SkillsOnRepositoriesCreateWithoutSkillInput[] | SkillsOnRepositoriesUncheckedCreateWithoutSkillInput | SkillsOnRepositoriesUncheckedCreateWithoutSkillInput[] No
connectOrCreate SkillsOnRepositoriesCreateOrConnectWithoutSkillInput | SkillsOnRepositoriesCreateOrConnectWithoutSkillInput[] No
upsert SkillsOnRepositoriesUpsertWithWhereUniqueWithoutSkillInput | SkillsOnRepositoriesUpsertWithWhereUniqueWithoutSkillInput[] No
createMany SkillsOnRepositoriesCreateManySkillInputEnvelope No
set SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
disconnect SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
delete SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
connect SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
update SkillsOnRepositoriesUpdateWithWhereUniqueWithoutSkillInput | SkillsOnRepositoriesUpdateWithWhereUniqueWithoutSkillInput[] No
updateMany SkillsOnRepositoriesUpdateManyWithWhereWithoutSkillInput | SkillsOnRepositoriesUpdateManyWithWhereWithoutSkillInput[] No
deleteMany SkillsOnRepositoriesScalarWhereInput | SkillsOnRepositoriesScalarWhereInput[] No

FollowSkillUncheckedUpdateManyWithoutFollowingInput

Name Type Nullable
create FollowSkillCreateWithoutFollowingInput | FollowSkillCreateWithoutFollowingInput[] | FollowSkillUncheckedCreateWithoutFollowingInput | FollowSkillUncheckedCreateWithoutFollowingInput[] No
connectOrCreate FollowSkillCreateOrConnectWithoutFollowingInput | FollowSkillCreateOrConnectWithoutFollowingInput[] No
upsert FollowSkillUpsertWithWhereUniqueWithoutFollowingInput | FollowSkillUpsertWithWhereUniqueWithoutFollowingInput[] No
createMany FollowSkillCreateManyFollowingInputEnvelope No
set FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
disconnect FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
delete FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
connect FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] No
update FollowSkillUpdateWithWhereUniqueWithoutFollowingInput | FollowSkillUpdateWithWhereUniqueWithoutFollowingInput[] No
updateMany FollowSkillUpdateManyWithWhereWithoutFollowingInput | FollowSkillUpdateManyWithWhereWithoutFollowingInput[] No
deleteMany FollowSkillScalarWhereInput | FollowSkillScalarWhereInput[] No

PostCreateNestedOneWithoutSkillsInput

Name Type Nullable
create PostCreateWithoutSkillsInput | PostUncheckedCreateWithoutSkillsInput No
connectOrCreate PostCreateOrConnectWithoutSkillsInput No
connect PostWhereUniqueInput No

SkillCreateNestedOneWithoutPostsInput

Name Type Nullable
create SkillCreateWithoutPostsInput | SkillUncheckedCreateWithoutPostsInput No
connectOrCreate SkillCreateOrConnectWithoutPostsInput No
connect SkillWhereUniqueInput No



SkillCreateNestedOneWithoutUsersInput

Name Type Nullable
create SkillCreateWithoutUsersInput | SkillUncheckedCreateWithoutUsersInput No
connectOrCreate SkillCreateOrConnectWithoutUsersInput No
connect SkillWhereUniqueInput No

UserCreateNestedOneWithoutSkillsInput

Name Type Nullable
create UserCreateWithoutSkillsInput | UserUncheckedCreateWithoutSkillsInput No
connectOrCreate UserCreateOrConnectWithoutSkillsInput No
connect UserWhereUniqueInput No



SkillCreateNestedOneWithoutDesiringUsersInput

Name Type Nullable
create SkillCreateWithoutDesiringUsersInput | SkillUncheckedCreateWithoutDesiringUsersInput No
connectOrCreate SkillCreateOrConnectWithoutDesiringUsersInput No
connect SkillWhereUniqueInput No

UserCreateNestedOneWithoutDesiredSkillsInput

Name Type Nullable
create UserCreateWithoutDesiredSkillsInput | UserUncheckedCreateWithoutDesiredSkillsInput No
connectOrCreate UserCreateOrConnectWithoutDesiredSkillsInput No
connect UserWhereUniqueInput No




UserCreateNestedOneWithoutRepositoriesInput

Name Type Nullable
create UserCreateWithoutRepositoriesInput | UserUncheckedCreateWithoutRepositoriesInput No
connectOrCreate UserCreateOrConnectWithoutRepositoriesInput No
connect UserWhereUniqueInput No


SkillsOnRepositoriesUpdateManyWithoutRepositoryInput

Name Type Nullable
create SkillsOnRepositoriesCreateWithoutRepositoryInput | SkillsOnRepositoriesCreateWithoutRepositoryInput[] | SkillsOnRepositoriesUncheckedCreateWithoutRepositoryInput | SkillsOnRepositoriesUncheckedCreateWithoutRepositoryInput[] No
connectOrCreate SkillsOnRepositoriesCreateOrConnectWithoutRepositoryInput | SkillsOnRepositoriesCreateOrConnectWithoutRepositoryInput[] No
upsert SkillsOnRepositoriesUpsertWithWhereUniqueWithoutRepositoryInput | SkillsOnRepositoriesUpsertWithWhereUniqueWithoutRepositoryInput[] No
createMany SkillsOnRepositoriesCreateManyRepositoryInputEnvelope No
set SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
disconnect SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
delete SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
connect SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
update SkillsOnRepositoriesUpdateWithWhereUniqueWithoutRepositoryInput | SkillsOnRepositoriesUpdateWithWhereUniqueWithoutRepositoryInput[] No
updateMany SkillsOnRepositoriesUpdateManyWithWhereWithoutRepositoryInput | SkillsOnRepositoriesUpdateManyWithWhereWithoutRepositoryInput[] No
deleteMany SkillsOnRepositoriesScalarWhereInput | SkillsOnRepositoriesScalarWhereInput[] No


SkillsOnRepositoriesUncheckedUpdateManyWithoutRepositoryInput

Name Type Nullable
create SkillsOnRepositoriesCreateWithoutRepositoryInput | SkillsOnRepositoriesCreateWithoutRepositoryInput[] | SkillsOnRepositoriesUncheckedCreateWithoutRepositoryInput | SkillsOnRepositoriesUncheckedCreateWithoutRepositoryInput[] No
connectOrCreate SkillsOnRepositoriesCreateOrConnectWithoutRepositoryInput | SkillsOnRepositoriesCreateOrConnectWithoutRepositoryInput[] No
upsert SkillsOnRepositoriesUpsertWithWhereUniqueWithoutRepositoryInput | SkillsOnRepositoriesUpsertWithWhereUniqueWithoutRepositoryInput[] No
createMany SkillsOnRepositoriesCreateManyRepositoryInputEnvelope No
set SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
disconnect SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
delete SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
connect SkillsOnRepositoriesWhereUniqueInput | SkillsOnRepositoriesWhereUniqueInput[] No
update SkillsOnRepositoriesUpdateWithWhereUniqueWithoutRepositoryInput | SkillsOnRepositoriesUpdateWithWhereUniqueWithoutRepositoryInput[] No
updateMany SkillsOnRepositoriesUpdateManyWithWhereWithoutRepositoryInput | SkillsOnRepositoriesUpdateManyWithWhereWithoutRepositoryInput[] No
deleteMany SkillsOnRepositoriesScalarWhereInput | SkillsOnRepositoriesScalarWhereInput[] No

SkillCreateNestedOneWithoutRepositoriesInput

Name Type Nullable
create SkillCreateWithoutRepositoriesInput | SkillUncheckedCreateWithoutRepositoriesInput No
connectOrCreate SkillCreateOrConnectWithoutRepositoriesInput No
connect SkillWhereUniqueInput No

RepositoryCreateNestedOneWithoutSkillsInput

Name Type Nullable
create RepositoryCreateWithoutSkillsInput | RepositoryUncheckedCreateWithoutSkillsInput No
connectOrCreate RepositoryCreateOrConnectWithoutSkillsInput No
connect RepositoryWhereUniqueInput No





ExperienceUpdateManyWithoutOrganizationInput

Name Type Nullable
create ExperienceCreateWithoutOrganizationInput | ExperienceCreateWithoutOrganizationInput[] | ExperienceUncheckedCreateWithoutOrganizationInput | ExperienceUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate ExperienceCreateOrConnectWithoutOrganizationInput | ExperienceCreateOrConnectWithoutOrganizationInput[] No
upsert ExperienceUpsertWithWhereUniqueWithoutOrganizationInput | ExperienceUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany ExperienceCreateManyOrganizationInputEnvelope No
set ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
disconnect ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
delete ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
connect ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
update ExperienceUpdateWithWhereUniqueWithoutOrganizationInput | ExperienceUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany ExperienceUpdateManyWithWhereWithoutOrganizationInput | ExperienceUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany ExperienceScalarWhereInput | ExperienceScalarWhereInput[] No

ExperienceUncheckedUpdateManyWithoutOrganizationInput

Name Type Nullable
create ExperienceCreateWithoutOrganizationInput | ExperienceCreateWithoutOrganizationInput[] | ExperienceUncheckedCreateWithoutOrganizationInput | ExperienceUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate ExperienceCreateOrConnectWithoutOrganizationInput | ExperienceCreateOrConnectWithoutOrganizationInput[] No
upsert ExperienceUpsertWithWhereUniqueWithoutOrganizationInput | ExperienceUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany ExperienceCreateManyOrganizationInputEnvelope No
set ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
disconnect ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
delete ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
connect ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] No
update ExperienceUpdateWithWhereUniqueWithoutOrganizationInput | ExperienceUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany ExperienceUpdateManyWithWhereWithoutOrganizationInput | ExperienceUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany ExperienceScalarWhereInput | ExperienceScalarWhereInput[] No

ExperienceCreatehighlightsInput

Name Type Nullable
set String No

OrganizationCreateNestedOneWithoutExperiencesInput

Name Type Nullable
create OrganizationCreateWithoutExperiencesInput | OrganizationUncheckedCreateWithoutExperiencesInput No
connectOrCreate OrganizationCreateOrConnectWithoutExperiencesInput No
connect OrganizationWhereUniqueInput No

UserCreateNestedOneWithoutExperiencesInput

Name Type Nullable
create UserCreateWithoutExperiencesInput | UserUncheckedCreateWithoutExperiencesInput No
connectOrCreate UserCreateOrConnectWithoutExperiencesInput No
connect UserWhereUniqueInput No

NullableEnumExperienceTypeFieldUpdateOperationsInput

Name Type Nullable
set ExperienceType | Null Yes

ExperienceUpdatehighlightsInput

Name Type Nullable
set String No
push String | String No



ExperienceCreateManyhighlightsInput

Name Type Nullable
set String No

NestedStringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableFilter | Null Yes

NestedIntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

NestedStringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableFilter | Null Yes

NestedStringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

NestedDateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedEnumUserActivityTypeFilter

Name Type Nullable
equals UserActivityType No
in UserActivityType[] No
notIn UserActivityType[] No
not UserActivityType | NestedEnumUserActivityTypeFilter No

NestedEnumUserActivityTypeWithAggregatesFilter

Name Type Nullable
equals UserActivityType No
in UserActivityType[] No
notIn UserActivityType[] No
not UserActivityType | NestedEnumUserActivityTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumUserActivityTypeFilter No
_max NestedEnumUserActivityTypeFilter No

NestedBoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedJsonFilter

Name Type Nullable
equals JsonNullValueFilter | Json No
not JsonNullValueFilter | Json No

NestedJsonNullableFilter

Name Type Nullable
equals JsonNullValueFilter | Json No
not JsonNullValueFilter | Json No

NestedEnumExperienceTypeNullableFilter

Name Type Nullable
equals ExperienceType | Null Yes
in ExperienceType[] | Null Yes
notIn ExperienceType[] | Null Yes
not ExperienceType | NestedEnumExperienceTypeNullableFilter | Null Yes

NestedEnumExperienceTypeNullableWithAggregatesFilter

Name Type Nullable
equals ExperienceType | Null Yes
in ExperienceType[] | Null Yes
notIn ExperienceType[] | Null Yes
not ExperienceType | NestedEnumExperienceTypeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumExperienceTypeNullableFilter No
_max NestedEnumExperienceTypeNullableFilter No

UserCreateWithoutAccountsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutAccountsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutAccountsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput No


UserUpdateWithoutAccountsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutAccountsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

UserCreateWithoutSessionsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutSessionsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutSessionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput No


UserUpdateWithoutSessionsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutSessionsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

AccountCreateWithoutUserInput

Name Type Nullable
access_token String | Null Yes
expires_at Int | Null Yes
id String No
id_token String | Null Yes
provider String No
providerAccountId String No
oauth_token String | Null Yes
oauth_token_secret String | Null Yes
refresh_token String | Null Yes
scope String | Null Yes
session_state String | Null Yes
token_type String | Null Yes
type String No

AccountUncheckedCreateWithoutUserInput

Name Type Nullable
access_token String | Null Yes
expires_at Int | Null Yes
id String No
id_token String | Null Yes
provider String No
providerAccountId String No
oauth_token String | Null Yes
oauth_token_secret String | Null Yes
refresh_token String | Null Yes
scope String | Null Yes
session_state String | Null Yes
token_type String | Null Yes
type String No

AccountCreateOrConnectWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
create AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput No

AccountCreateManyUserInputEnvelope

Name Type Nullable
data AccountCreateManyUserInput[] No
skipDuplicates Boolean No

UserActivityCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
type UserActivityType No
comment CommentCreateNestedOneWithoutActivitiesInput No
follow FollowCreateNestedOneWithoutActivitiesInput No
friendship FriendshipCreateNestedOneWithoutActivitiesInput No
post PostCreateNestedOneWithoutActivitiesInput No

UserActivityUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
followId String | Null Yes
friendshipId String | Null Yes
postId String | Null Yes
type UserActivityType No

UserActivityCreateOrConnectWithoutUserInput

Name Type Nullable
where UserActivityWhereUniqueInput No
create UserActivityCreateWithoutUserInput | UserActivityUncheckedCreateWithoutUserInput No

UserActivityCreateManyUserInputEnvelope

Name Type Nullable
data UserActivityCreateManyUserInput[] No
skipDuplicates Boolean No

ChatsOnUsersCreateWithoutUserInput

Name Type Nullable
id String No
chat ChatCreateNestedOneWithoutUsersInput No

ChatsOnUsersUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
chatId String No

ChatsOnUsersCreateOrConnectWithoutUserInput

Name Type Nullable
where ChatsOnUsersWhereUniqueInput No
create ChatsOnUsersCreateWithoutUserInput | ChatsOnUsersUncheckedCreateWithoutUserInput No

ChatsOnUsersCreateManyUserInputEnvelope

Name Type Nullable
data ChatsOnUsersCreateManyUserInput[] No
skipDuplicates Boolean No

ChatMessageCreateWithoutSenderInput

Name Type Nullable
id String No
content JsonNullValueInput | Json No
chat ChatCreateNestedOneWithoutMessagesInput No

ChatMessageUncheckedCreateWithoutSenderInput

Name Type Nullable
id String No
chatId String No
content JsonNullValueInput | Json No

ChatMessageCreateOrConnectWithoutSenderInput

Name Type Nullable
where ChatMessageWhereUniqueInput No
create ChatMessageCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput No

ChatMessageCreateManySenderInputEnvelope

Name Type Nullable
data ChatMessageCreateManySenderInput[] No
skipDuplicates Boolean No

CommentCreateWithoutAuthorInput

Name Type Nullable
id String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutCommentInput No
parent CommentCreateNestedOneWithoutRepliesInput No
post PostCreateNestedOneWithoutCommentsInput No
replies CommentCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterCreateNestedManyWithoutCommentInput No

CommentUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
postId String | Null Yes
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutCommentInput No
replies CommentUncheckedCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput No

CommentCreateOrConnectWithoutAuthorInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput No

CommentCreateManyAuthorInputEnvelope

Name Type Nullable
data CommentCreateManyAuthorInput[] No
skipDuplicates Boolean No

DesiredSkillsOnUsersCreateWithoutUserInput

Name Type Nullable
id String No
skill SkillCreateNestedOneWithoutDesiringUsersInput No

DesiredSkillsOnUsersUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
skillId String No

DesiredSkillsOnUsersCreateOrConnectWithoutUserInput

Name Type Nullable
where DesiredSkillsOnUsersWhereUniqueInput No
create DesiredSkillsOnUsersCreateWithoutUserInput | DesiredSkillsOnUsersUncheckedCreateWithoutUserInput No

DesiredSkillsOnUsersCreateManyUserInputEnvelope

Name Type Nullable
data DesiredSkillsOnUsersCreateManyUserInput[] No
skipDuplicates Boolean No

ExperienceCreateWithoutUserInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
highlights ExperienceCreatehighlightsInput | String No
organization OrganizationCreateNestedOneWithoutExperiencesInput No

ExperienceUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
organizationName String No
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
highlights ExperienceCreatehighlightsInput | String No

ExperienceCreateOrConnectWithoutUserInput

Name Type Nullable
where ExperienceWhereUniqueInput No
create ExperienceCreateWithoutUserInput | ExperienceUncheckedCreateWithoutUserInput No

ExperienceCreateManyUserInputEnvelope

Name Type Nullable
data ExperienceCreateManyUserInput[] No
skipDuplicates Boolean No

FollowUserCreateWithoutFollowingInput

Name Type Nullable
id String No
follow FollowCreateNestedOneWithoutFollowingUserInput No
follower UserCreateNestedOneWithoutFollowingUserInput No

FollowUserUncheckedCreateWithoutFollowingInput

Name Type Nullable
id String No
followId String No
followerId String No

FollowUserCreateOrConnectWithoutFollowingInput

Name Type Nullable
where FollowUserWhereUniqueInput No
create FollowUserCreateWithoutFollowingInput | FollowUserUncheckedCreateWithoutFollowingInput No

FollowUserCreateManyFollowingInputEnvelope

Name Type Nullable
data FollowUserCreateManyFollowingInput[] No
skipDuplicates Boolean No

FollowSkillCreateWithoutFollowerInput

Name Type Nullable
id String No
follow FollowCreateNestedOneWithoutFollowingSkillInput No
following SkillCreateNestedOneWithoutFollowedByInput No

FollowSkillUncheckedCreateWithoutFollowerInput

Name Type Nullable
id String No
followId String No
followingId String No

FollowSkillCreateOrConnectWithoutFollowerInput

Name Type Nullable
where FollowSkillWhereUniqueInput No
create FollowSkillCreateWithoutFollowerInput | FollowSkillUncheckedCreateWithoutFollowerInput No

FollowSkillCreateManyFollowerInputEnvelope

Name Type Nullable
data FollowSkillCreateManyFollowerInput[] No
skipDuplicates Boolean No

FollowUserCreateWithoutFollowerInput

Name Type Nullable
id String No
follow FollowCreateNestedOneWithoutFollowingUserInput No
following UserCreateNestedOneWithoutFollowedByInput No

FollowUserUncheckedCreateWithoutFollowerInput

Name Type Nullable
id String No
followId String No
followingId String No

FollowUserCreateOrConnectWithoutFollowerInput

Name Type Nullable
where FollowUserWhereUniqueInput No
create FollowUserCreateWithoutFollowerInput | FollowUserUncheckedCreateWithoutFollowerInput No

FollowUserCreateManyFollowerInputEnvelope

Name Type Nullable
data FollowUserCreateManyFollowerInput[] No
skipDuplicates Boolean No

FriendshipCreateWithoutFriendingInput

Name Type Nullable
id String No
rejected Boolean No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutFriendshipInput No
friender UserCreateNestedOneWithoutFriendingInput No

FriendshipUncheckedCreateWithoutFriendingInput

Name Type Nullable
id String No
frienderId String No
rejected Boolean No
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutFriendshipInput No

FriendshipCreateOrConnectWithoutFriendingInput

Name Type Nullable
where FriendshipWhereUniqueInput No
create FriendshipCreateWithoutFriendingInput | FriendshipUncheckedCreateWithoutFriendingInput No

FriendshipCreateManyFriendingInputEnvelope

Name Type Nullable
data FriendshipCreateManyFriendingInput[] No
skipDuplicates Boolean No

FriendshipCreateWithoutFrienderInput

Name Type Nullable
id String No
rejected Boolean No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutFriendshipInput No
friending UserCreateNestedOneWithoutFriendedByInput No

FriendshipUncheckedCreateWithoutFrienderInput

Name Type Nullable
id String No
friendingId String No
rejected Boolean No
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutFriendshipInput No

FriendshipCreateOrConnectWithoutFrienderInput

Name Type Nullable
where FriendshipWhereUniqueInput No
create FriendshipCreateWithoutFrienderInput | FriendshipUncheckedCreateWithoutFrienderInput No

FriendshipCreateManyFrienderInputEnvelope

Name Type Nullable
data FriendshipCreateManyFrienderInput[] No
skipDuplicates Boolean No

PostCreateWithoutAuthorInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityCreateNestedManyWithoutPostInput No
comments CommentCreateNestedManyWithoutPostInput No
images PostImageCreateNestedManyWithoutPostInput No
skills SkillsOnPostsCreateNestedManyWithoutPostInput No
upvoters PostUpvoterCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutAuthorInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityUncheckedCreateNestedManyWithoutPostInput No
comments CommentUncheckedCreateNestedManyWithoutPostInput No
images PostImageUncheckedCreateNestedManyWithoutPostInput No
skills SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput No
upvoters PostUpvoterUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutAuthorInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput No

PostCreateManyAuthorInputEnvelope

Name Type Nullable
data PostCreateManyAuthorInput[] No
skipDuplicates Boolean No

RepositoryCreateWithoutUserInput

Name Type Nullable
id String No
name String No
skills SkillsOnRepositoriesCreateNestedManyWithoutRepositoryInput No

RepositoryUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
name String No
skills SkillsOnRepositoriesUncheckedCreateNestedManyWithoutRepositoryInput No

RepositoryCreateOrConnectWithoutUserInput

Name Type Nullable
where RepositoryWhereUniqueInput No
create RepositoryCreateWithoutUserInput | RepositoryUncheckedCreateWithoutUserInput No

RepositoryCreateManyUserInputEnvelope

Name Type Nullable
data RepositoryCreateManyUserInput[] No
skipDuplicates Boolean No

SessionCreateWithoutUserInput

Name Type Nullable
expires DateTime No
id String No
sessionToken String No

SessionUncheckedCreateWithoutUserInput

Name Type Nullable
expires DateTime No
id String No
sessionToken String No

SessionCreateOrConnectWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
create SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput No

SessionCreateManyUserInputEnvelope

Name Type Nullable
data SessionCreateManyUserInput[] No
skipDuplicates Boolean No

SkillsOnUsersCreateWithoutUserInput

Name Type Nullable
id String No
skill SkillCreateNestedOneWithoutUsersInput No

SkillsOnUsersUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
skillId String No

SkillsOnUsersCreateOrConnectWithoutUserInput

Name Type Nullable
where SkillsOnUsersWhereUniqueInput No
create SkillsOnUsersCreateWithoutUserInput | SkillsOnUsersUncheckedCreateWithoutUserInput No

SkillsOnUsersCreateManyUserInputEnvelope

Name Type Nullable
data SkillsOnUsersCreateManyUserInput[] No
skipDuplicates Boolean No

CommentUpvoterCreateWithoutUserInput

Name Type Nullable
id String No
upvote Boolean No
comment CommentCreateNestedOneWithoutUpvotersInput No

CommentUpvoterUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
commentId String No
upvote Boolean No

CommentUpvoterCreateOrConnectWithoutUserInput

Name Type Nullable
where CommentUpvoterWhereUniqueInput No
create CommentUpvoterCreateWithoutUserInput | CommentUpvoterUncheckedCreateWithoutUserInput No

CommentUpvoterCreateManyUserInputEnvelope

Name Type Nullable
data CommentUpvoterCreateManyUserInput[] No
skipDuplicates Boolean No

PostUpvoterCreateWithoutUserInput

Name Type Nullable
id String No
upvote Boolean No
post PostCreateNestedOneWithoutUpvotersInput No

PostUpvoterUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
postId String No
upvote Boolean No

PostUpvoterCreateOrConnectWithoutUserInput

Name Type Nullable
where PostUpvoterWhereUniqueInput No
create PostUpvoterCreateWithoutUserInput | PostUpvoterUncheckedCreateWithoutUserInput No

PostUpvoterCreateManyUserInputEnvelope

Name Type Nullable
data PostUpvoterCreateManyUserInput[] No
skipDuplicates Boolean No


AccountUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
data AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput No

AccountUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where AccountScalarWhereInput No
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutAccountsInput No

AccountScalarWhereInput

Name Type Nullable
AND AccountScalarWhereInput | AccountScalarWhereInput[] No
OR AccountScalarWhereInput[] No
NOT AccountScalarWhereInput | AccountScalarWhereInput[] No
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
id StringFilter | String No
id_token StringNullableFilter | String | Null Yes
provider StringFilter | String No
providerAccountId StringFilter | String No
oauth_token StringNullableFilter | String | Null Yes
oauth_token_secret StringNullableFilter | String | Null Yes
refresh_token StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
token_type StringNullableFilter | String | Null Yes
type StringFilter | String No
userId StringFilter | String No


UserActivityUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where UserActivityWhereUniqueInput No
data UserActivityUpdateWithoutUserInput | UserActivityUncheckedUpdateWithoutUserInput No

UserActivityUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where UserActivityScalarWhereInput No
data UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput No

UserActivityScalarWhereInput

Name Type Nullable
AND UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No
OR UserActivityScalarWhereInput[] No
NOT UserActivityScalarWhereInput | UserActivityScalarWhereInput[] No
id StringFilter | String No
commentId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
followId StringNullableFilter | String | Null Yes
friendshipId StringNullableFilter | String | Null Yes
postId StringNullableFilter | String | Null Yes
type EnumUserActivityTypeFilter | UserActivityType No
userId StringFilter | String No


ChatsOnUsersUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where ChatsOnUsersWhereUniqueInput No
data ChatsOnUsersUpdateWithoutUserInput | ChatsOnUsersUncheckedUpdateWithoutUserInput No

ChatsOnUsersUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where ChatsOnUsersScalarWhereInput No
data ChatsOnUsersUpdateManyMutationInput | ChatsOnUsersUncheckedUpdateManyWithoutChatsInput No

ChatsOnUsersScalarWhereInput

Name Type Nullable
AND ChatsOnUsersScalarWhereInput | ChatsOnUsersScalarWhereInput[] No
OR ChatsOnUsersScalarWhereInput[] No
NOT ChatsOnUsersScalarWhereInput | ChatsOnUsersScalarWhereInput[] No
id StringFilter | String No
chatId StringFilter | String No
userId StringFilter | String No


ChatMessageUpdateWithWhereUniqueWithoutSenderInput

Name Type Nullable
where ChatMessageWhereUniqueInput No
data ChatMessageUpdateWithoutSenderInput | ChatMessageUncheckedUpdateWithoutSenderInput No

ChatMessageUpdateManyWithWhereWithoutSenderInput

Name Type Nullable
where ChatMessageScalarWhereInput No
data ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutChatMessagesInput No

ChatMessageScalarWhereInput

Name Type Nullable
AND ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No
OR ChatMessageScalarWhereInput[] No
NOT ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No
id StringFilter | String No
chatId StringFilter | String No
content JsonFilter No
senderId StringFilter | String No


CommentUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where CommentWhereUniqueInput No
data CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput No

CommentUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where CommentScalarWhereInput No
data CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutCommentsInput No

CommentScalarWhereInput

Name Type Nullable
AND CommentScalarWhereInput | CommentScalarWhereInput[] No
OR CommentScalarWhereInput[] No
NOT CommentScalarWhereInput | CommentScalarWhereInput[] No
id StringFilter | String No
authorId StringFilter | String No
content JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
parentId StringNullableFilter | String | Null Yes
postId StringNullableFilter | String | Null Yes
updatedAt DateTimeFilter | DateTime No


DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where DesiredSkillsOnUsersWhereUniqueInput No
data DesiredSkillsOnUsersUpdateWithoutUserInput | DesiredSkillsOnUsersUncheckedUpdateWithoutUserInput No

DesiredSkillsOnUsersUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where DesiredSkillsOnUsersScalarWhereInput No
data DesiredSkillsOnUsersUpdateManyMutationInput | DesiredSkillsOnUsersUncheckedUpdateManyWithoutDesiredSkillsInput No



ExperienceUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where ExperienceWhereUniqueInput No
data ExperienceUpdateWithoutUserInput | ExperienceUncheckedUpdateWithoutUserInput No

ExperienceUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where ExperienceScalarWhereInput No
data ExperienceUpdateManyMutationInput | ExperienceUncheckedUpdateManyWithoutExperiencesInput No

ExperienceScalarWhereInput

Name Type Nullable
AND ExperienceScalarWhereInput | ExperienceScalarWhereInput[] No
OR ExperienceScalarWhereInput[] No
NOT ExperienceScalarWhereInput | ExperienceScalarWhereInput[] No
id StringFilter | String No
endDate DateTimeNullableFilter | DateTime | Null Yes
highlights StringNullableListFilter No
location StringNullableFilter | String | Null Yes
organizationName StringFilter | String No
positionName StringFilter | String No
startDate DateTimeFilter | DateTime No
type EnumExperienceTypeNullableFilter | ExperienceType | Null Yes
userId StringFilter | String No


FollowUserUpdateWithWhereUniqueWithoutFollowingInput

Name Type Nullable
where FollowUserWhereUniqueInput No
data FollowUserUpdateWithoutFollowingInput | FollowUserUncheckedUpdateWithoutFollowingInput No

FollowUserUpdateManyWithWhereWithoutFollowingInput

Name Type Nullable
where FollowUserScalarWhereInput No
data FollowUserUpdateManyMutationInput | FollowUserUncheckedUpdateManyWithoutFollowedByInput No

FollowUserScalarWhereInput

Name Type Nullable
AND FollowUserScalarWhereInput | FollowUserScalarWhereInput[] No
OR FollowUserScalarWhereInput[] No
NOT FollowUserScalarWhereInput | FollowUserScalarWhereInput[] No
id StringFilter | String No
followId StringFilter | String No
followerId StringFilter | String No
followingId StringFilter | String No


FollowSkillUpdateWithWhereUniqueWithoutFollowerInput

Name Type Nullable
where FollowSkillWhereUniqueInput No
data FollowSkillUpdateWithoutFollowerInput | FollowSkillUncheckedUpdateWithoutFollowerInput No

FollowSkillUpdateManyWithWhereWithoutFollowerInput

Name Type Nullable
where FollowSkillScalarWhereInput No
data FollowSkillUpdateManyMutationInput | FollowSkillUncheckedUpdateManyWithoutFollowingSkillInput No

FollowSkillScalarWhereInput

Name Type Nullable
AND FollowSkillScalarWhereInput | FollowSkillScalarWhereInput[] No
OR FollowSkillScalarWhereInput[] No
NOT FollowSkillScalarWhereInput | FollowSkillScalarWhereInput[] No
id StringFilter | String No
followId StringFilter | String No
followerId StringFilter | String No
followingId StringFilter | String No


FollowUserUpdateWithWhereUniqueWithoutFollowerInput

Name Type Nullable
where FollowUserWhereUniqueInput No
data FollowUserUpdateWithoutFollowerInput | FollowUserUncheckedUpdateWithoutFollowerInput No

FollowUserUpdateManyWithWhereWithoutFollowerInput

Name Type Nullable
where FollowUserScalarWhereInput No
data FollowUserUpdateManyMutationInput | FollowUserUncheckedUpdateManyWithoutFollowingUserInput No


FriendshipUpdateWithWhereUniqueWithoutFriendingInput

Name Type Nullable
where FriendshipWhereUniqueInput No
data FriendshipUpdateWithoutFriendingInput | FriendshipUncheckedUpdateWithoutFriendingInput No

FriendshipUpdateManyWithWhereWithoutFriendingInput

Name Type Nullable
where FriendshipScalarWhereInput No
data FriendshipUpdateManyMutationInput | FriendshipUncheckedUpdateManyWithoutFriendedByInput No

FriendshipScalarWhereInput

Name Type Nullable
AND FriendshipScalarWhereInput | FriendshipScalarWhereInput[] No
OR FriendshipScalarWhereInput[] No
NOT FriendshipScalarWhereInput | FriendshipScalarWhereInput[] No
id StringFilter | String No
frienderId StringFilter | String No
friendingId StringFilter | String No
rejected BoolFilter | Boolean No
updatedAt DateTimeFilter | DateTime No


FriendshipUpdateWithWhereUniqueWithoutFrienderInput

Name Type Nullable
where FriendshipWhereUniqueInput No
data FriendshipUpdateWithoutFrienderInput | FriendshipUncheckedUpdateWithoutFrienderInput No

FriendshipUpdateManyWithWhereWithoutFrienderInput

Name Type Nullable
where FriendshipScalarWhereInput No
data FriendshipUpdateManyMutationInput | FriendshipUncheckedUpdateManyWithoutFriendingInput No

PostUpsertWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where PostWhereUniqueInput No
update PostUpdateWithoutAuthorInput | PostUncheckedUpdateWithoutAuthorInput No
create PostCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput No

PostUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where PostWhereUniqueInput No
data PostUpdateWithoutAuthorInput | PostUncheckedUpdateWithoutAuthorInput No

PostUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where PostScalarWhereInput No
data PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutPostsInput No

PostScalarWhereInput

Name Type Nullable
AND PostScalarWhereInput | PostScalarWhereInput[] No
OR PostScalarWhereInput[] No
NOT PostScalarWhereInput | PostScalarWhereInput[] No
authorName StringFilter | String No
content JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
description StringNullableFilter | String | Null Yes
id StringFilter | String No
publishedAt DateTimeNullableFilter | DateTime | Null Yes
readTime IntNullableFilter | Int | Null Yes
title StringNullableFilter | String | Null Yes
thumbnailUrl StringNullableFilter | String | Null Yes
updatedAt DateTimeFilter | DateTime No
urlSlug StringFilter | String No


RepositoryUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where RepositoryWhereUniqueInput No
data RepositoryUpdateWithoutUserInput | RepositoryUncheckedUpdateWithoutUserInput No

RepositoryUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where RepositoryScalarWhereInput No
data RepositoryUpdateManyMutationInput | RepositoryUncheckedUpdateManyWithoutRepositoriesInput No

RepositoryScalarWhereInput

Name Type Nullable
AND RepositoryScalarWhereInput | RepositoryScalarWhereInput[] No
OR RepositoryScalarWhereInput[] No
NOT RepositoryScalarWhereInput | RepositoryScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
owner StringFilter | String No


SessionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
data SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput No

SessionUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where SessionScalarWhereInput No
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutSessionsInput No

SessionScalarWhereInput

Name Type Nullable
AND SessionScalarWhereInput | SessionScalarWhereInput[] No
OR SessionScalarWhereInput[] No
NOT SessionScalarWhereInput | SessionScalarWhereInput[] No
expires DateTimeFilter | DateTime No
id StringFilter | String No
sessionToken StringFilter | String No
userId StringFilter | String No


SkillsOnUsersUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where SkillsOnUsersWhereUniqueInput No
data SkillsOnUsersUpdateWithoutUserInput | SkillsOnUsersUncheckedUpdateWithoutUserInput No

SkillsOnUsersUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where SkillsOnUsersScalarWhereInput No
data SkillsOnUsersUpdateManyMutationInput | SkillsOnUsersUncheckedUpdateManyWithoutSkillsInput No

SkillsOnUsersScalarWhereInput

Name Type Nullable
AND SkillsOnUsersScalarWhereInput | SkillsOnUsersScalarWhereInput[] No
OR SkillsOnUsersScalarWhereInput[] No
NOT SkillsOnUsersScalarWhereInput | SkillsOnUsersScalarWhereInput[] No
id StringFilter | String No
skillId StringFilter | String No
userId StringFilter | String No


CommentUpvoterUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where CommentUpvoterWhereUniqueInput No
data CommentUpvoterUpdateWithoutUserInput | CommentUpvoterUncheckedUpdateWithoutUserInput No

CommentUpvoterUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where CommentUpvoterScalarWhereInput No
data CommentUpvoterUpdateManyMutationInput | CommentUpvoterUncheckedUpdateManyWithoutUpvotedCommentsInput No

CommentUpvoterScalarWhereInput

Name Type Nullable
AND CommentUpvoterScalarWhereInput | CommentUpvoterScalarWhereInput[] No
OR CommentUpvoterScalarWhereInput[] No
NOT CommentUpvoterScalarWhereInput | CommentUpvoterScalarWhereInput[] No
id StringFilter | String No
commentId StringFilter | String No
upvote BoolFilter | Boolean No
userId StringFilter | String No


PostUpvoterUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where PostUpvoterWhereUniqueInput No
data PostUpvoterUpdateWithoutUserInput | PostUpvoterUncheckedUpdateWithoutUserInput No

PostUpvoterUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where PostUpvoterScalarWhereInput No
data PostUpvoterUpdateManyMutationInput | PostUpvoterUncheckedUpdateManyWithoutUpvotedPostsInput No

PostUpvoterScalarWhereInput

Name Type Nullable
AND PostUpvoterScalarWhereInput | PostUpvoterScalarWhereInput[] No
OR PostUpvoterScalarWhereInput[] No
NOT PostUpvoterScalarWhereInput | PostUpvoterScalarWhereInput[] No
id StringFilter | String No
postId StringFilter | String No
upvote BoolFilter | Boolean No
userId StringFilter | String No

CommentCreateWithoutActivitiesInput

Name Type Nullable
id String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No
author UserCreateNestedOneWithoutCommentsInput No
parent CommentCreateNestedOneWithoutRepliesInput No
post PostCreateNestedOneWithoutCommentsInput No
replies CommentCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterCreateNestedManyWithoutCommentInput No

CommentUncheckedCreateWithoutActivitiesInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
postId String | Null Yes
updatedAt DateTime No
replies CommentUncheckedCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput No

CommentCreateOrConnectWithoutActivitiesInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutActivitiesInput | CommentUncheckedCreateWithoutActivitiesInput No

FollowCreateWithoutActivitiesInput

Name Type Nullable
id String No
createdAt DateTime No
followingSkill FollowSkillCreateNestedOneWithoutFollowInput No
followingUser FollowUserCreateNestedOneWithoutFollowInput No

FollowUncheckedCreateWithoutActivitiesInput

Name Type Nullable
id String No
createdAt DateTime No
followingSkill FollowSkillUncheckedCreateNestedOneWithoutFollowInput No
followingUser FollowUserUncheckedCreateNestedOneWithoutFollowInput No

FollowCreateOrConnectWithoutActivitiesInput

Name Type Nullable
where FollowWhereUniqueInput No
create FollowCreateWithoutActivitiesInput | FollowUncheckedCreateWithoutActivitiesInput No

FriendshipCreateWithoutActivitiesInput

Name Type Nullable
id String No
rejected Boolean No
updatedAt DateTime No
friender UserCreateNestedOneWithoutFriendingInput No
friending UserCreateNestedOneWithoutFriendedByInput No

FriendshipUncheckedCreateWithoutActivitiesInput

Name Type Nullable
id String No
frienderId String No
friendingId String No
rejected Boolean No
updatedAt DateTime No

FriendshipCreateOrConnectWithoutActivitiesInput

Name Type Nullable
where FriendshipWhereUniqueInput No
create FriendshipCreateWithoutActivitiesInput | FriendshipUncheckedCreateWithoutActivitiesInput No

PostCreateWithoutActivitiesInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
author UserCreateNestedOneWithoutPostsInput No
comments CommentCreateNestedManyWithoutPostInput No
images PostImageCreateNestedManyWithoutPostInput No
skills SkillsOnPostsCreateNestedManyWithoutPostInput No
upvoters PostUpvoterCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutActivitiesInput

Name Type Nullable
authorName String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
comments CommentUncheckedCreateNestedManyWithoutPostInput No
images PostImageUncheckedCreateNestedManyWithoutPostInput No
skills SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput No
upvoters PostUpvoterUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutActivitiesInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutActivitiesInput | PostUncheckedCreateWithoutActivitiesInput No

UserCreateWithoutActivitiesInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutActivitiesInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutActivitiesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutActivitiesInput | UserUncheckedCreateWithoutActivitiesInput No



CommentUncheckedUpdateWithoutActivitiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
parentId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
replies CommentUncheckedUpdateManyWithoutParentInput No
upvoters CommentUpvoterUncheckedUpdateManyWithoutCommentInput No


FollowUpdateWithoutActivitiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followingSkill FollowSkillUpdateOneWithoutFollowInput No
followingUser FollowUserUpdateOneWithoutFollowInput No

FollowUncheckedUpdateWithoutActivitiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followingSkill FollowSkillUncheckedUpdateOneWithoutFollowInput No
followingUser FollowUserUncheckedUpdateOneWithoutFollowInput No


FriendshipUpdateWithoutActivitiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
friender UserUpdateOneRequiredWithoutFriendingInput No
friending UserUpdateOneRequiredWithoutFriendedByInput No

FriendshipUncheckedUpdateWithoutActivitiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
frienderId String | StringFieldUpdateOperationsInput No
friendingId String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No


PostUpdateWithoutActivitiesInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutPostsInput No
comments CommentUpdateManyWithoutPostInput No
images PostImageUpdateManyWithoutPostInput No
skills SkillsOnPostsUpdateManyWithoutPostInput No
upvoters PostUpvoterUpdateManyWithoutPostInput No

PostUncheckedUpdateWithoutActivitiesInput

Name Type Nullable
authorName String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
comments CommentUncheckedUpdateManyWithoutPostInput No
images PostImageUncheckedUpdateManyWithoutPostInput No
skills SkillsOnPostsUncheckedUpdateManyWithoutPostInput No
upvoters PostUpvoterUncheckedUpdateManyWithoutPostInput No


UserUpdateWithoutActivitiesInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutActivitiesInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

UserActivityCreateWithoutFriendshipInput

Name Type Nullable
id String No
createdAt DateTime No
type UserActivityType No
comment CommentCreateNestedOneWithoutActivitiesInput No
follow FollowCreateNestedOneWithoutActivitiesInput No
post PostCreateNestedOneWithoutActivitiesInput No
user UserCreateNestedOneWithoutActivitiesInput No

UserActivityUncheckedCreateWithoutFriendshipInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
followId String | Null Yes
postId String | Null Yes
type UserActivityType No
userId String No

UserActivityCreateOrConnectWithoutFriendshipInput

Name Type Nullable
where UserActivityWhereUniqueInput No
create UserActivityCreateWithoutFriendshipInput | UserActivityUncheckedCreateWithoutFriendshipInput No

UserActivityCreateManyFriendshipInputEnvelope

Name Type Nullable
data UserActivityCreateManyFriendshipInput[] No
skipDuplicates Boolean No

UserCreateWithoutFriendingInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutFriendingInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutFriendingInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFriendingInput | UserUncheckedCreateWithoutFriendingInput No

UserCreateWithoutFriendedByInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutFriendedByInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutFriendedByInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFriendedByInput | UserUncheckedCreateWithoutFriendedByInput No


UserActivityUpdateWithWhereUniqueWithoutFriendshipInput

Name Type Nullable
where UserActivityWhereUniqueInput No
data UserActivityUpdateWithoutFriendshipInput | UserActivityUncheckedUpdateWithoutFriendshipInput No

UserActivityUpdateManyWithWhereWithoutFriendshipInput

Name Type Nullable
where UserActivityScalarWhereInput No
data UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput No


UserUpdateWithoutFriendingInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutFriendingInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No


UserUpdateWithoutFriendedByInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutFriendedByInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

UserActivityCreateWithoutFollowInput

Name Type Nullable
id String No
createdAt DateTime No
type UserActivityType No
comment CommentCreateNestedOneWithoutActivitiesInput No
friendship FriendshipCreateNestedOneWithoutActivitiesInput No
post PostCreateNestedOneWithoutActivitiesInput No
user UserCreateNestedOneWithoutActivitiesInput No

UserActivityUncheckedCreateWithoutFollowInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
friendshipId String | Null Yes
postId String | Null Yes
type UserActivityType No
userId String No

UserActivityCreateOrConnectWithoutFollowInput

Name Type Nullable
where UserActivityWhereUniqueInput No
create UserActivityCreateWithoutFollowInput | UserActivityUncheckedCreateWithoutFollowInput No

UserActivityCreateManyFollowInputEnvelope

Name Type Nullable
data UserActivityCreateManyFollowInput[] No
skipDuplicates Boolean No

FollowSkillCreateWithoutFollowInput

Name Type Nullable
id String No
follower UserCreateNestedOneWithoutFollowingSkillInput No
following SkillCreateNestedOneWithoutFollowedByInput No

FollowSkillUncheckedCreateWithoutFollowInput

Name Type Nullable
id String No
followerId String No
followingId String No

FollowSkillCreateOrConnectWithoutFollowInput

Name Type Nullable
where FollowSkillWhereUniqueInput No
create FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput No

FollowUserCreateWithoutFollowInput

Name Type Nullable
id String No
follower UserCreateNestedOneWithoutFollowingUserInput No
following UserCreateNestedOneWithoutFollowedByInput No

FollowUserUncheckedCreateWithoutFollowInput

Name Type Nullable
id String No
followerId String No
followingId String No

FollowUserCreateOrConnectWithoutFollowInput

Name Type Nullable
where FollowUserWhereUniqueInput No
create FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput No


UserActivityUpdateWithWhereUniqueWithoutFollowInput

Name Type Nullable
where UserActivityWhereUniqueInput No
data UserActivityUpdateWithoutFollowInput | UserActivityUncheckedUpdateWithoutFollowInput No

UserActivityUpdateManyWithWhereWithoutFollowInput

Name Type Nullable
where UserActivityScalarWhereInput No
data UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput No


FollowSkillUpdateWithoutFollowInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follower UserUpdateOneRequiredWithoutFollowingSkillInput No
following SkillUpdateOneRequiredWithoutFollowedByInput No

FollowSkillUncheckedUpdateWithoutFollowInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No


FollowUserUpdateWithoutFollowInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follower UserUpdateOneRequiredWithoutFollowingUserInput No
following UserUpdateOneRequiredWithoutFollowedByInput No

FollowUserUncheckedUpdateWithoutFollowInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

FollowCreateWithoutFollowingUserInput

Name Type Nullable
id String No
createdAt DateTime No
activities UserActivityCreateNestedManyWithoutFollowInput No
followingSkill FollowSkillCreateNestedOneWithoutFollowInput No

FollowUncheckedCreateWithoutFollowingUserInput

Name Type Nullable
id String No
createdAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutFollowInput No
followingSkill FollowSkillUncheckedCreateNestedOneWithoutFollowInput No

FollowCreateOrConnectWithoutFollowingUserInput

Name Type Nullable
where FollowWhereUniqueInput No
create FollowCreateWithoutFollowingUserInput | FollowUncheckedCreateWithoutFollowingUserInput No

UserCreateWithoutFollowingUserInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutFollowingUserInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutFollowingUserInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFollowingUserInput | UserUncheckedCreateWithoutFollowingUserInput No

UserCreateWithoutFollowedByInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutFollowedByInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutFollowedByInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFollowedByInput | UserUncheckedCreateWithoutFollowedByInput No


FollowUpdateWithoutFollowingUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutFollowInput No
followingSkill FollowSkillUpdateOneWithoutFollowInput No

FollowUncheckedUpdateWithoutFollowingUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutFollowInput No
followingSkill FollowSkillUncheckedUpdateOneWithoutFollowInput No


UserUpdateWithoutFollowingUserInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutFollowingUserInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No


UserUpdateWithoutFollowedByInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutFollowedByInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

FollowCreateWithoutFollowingSkillInput

Name Type Nullable
id String No
createdAt DateTime No
activities UserActivityCreateNestedManyWithoutFollowInput No
followingUser FollowUserCreateNestedOneWithoutFollowInput No

FollowUncheckedCreateWithoutFollowingSkillInput

Name Type Nullable
id String No
createdAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutFollowInput No
followingUser FollowUserUncheckedCreateNestedOneWithoutFollowInput No

FollowCreateOrConnectWithoutFollowingSkillInput

Name Type Nullable
where FollowWhereUniqueInput No
create FollowCreateWithoutFollowingSkillInput | FollowUncheckedCreateWithoutFollowingSkillInput No

UserCreateWithoutFollowingSkillInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutFollowingSkillInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutFollowingSkillInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFollowingSkillInput | UserUncheckedCreateWithoutFollowingSkillInput No

SkillCreateWithoutFollowedByInput

Name Type Nullable
id String No
name String No
owner String No
users SkillsOnUsersCreateNestedManyWithoutSkillInput No
desiringUsers DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput No
posts SkillsOnPostsCreateNestedManyWithoutSkillInput No
repositories SkillsOnRepositoriesCreateNestedManyWithoutSkillInput No

SkillUncheckedCreateWithoutFollowedByInput

Name Type Nullable
id String No
name String No
owner String No
users SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput No
desiringUsers DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput No
posts SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput No
repositories SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput No

SkillCreateOrConnectWithoutFollowedByInput

Name Type Nullable
where SkillWhereUniqueInput No
create SkillCreateWithoutFollowedByInput | SkillUncheckedCreateWithoutFollowedByInput No


FollowUpdateWithoutFollowingSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutFollowInput No
followingUser FollowUserUpdateOneWithoutFollowInput No

FollowUncheckedUpdateWithoutFollowingSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutFollowInput No
followingUser FollowUserUncheckedUpdateOneWithoutFollowInput No


UserUpdateWithoutFollowingSkillInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutFollowingSkillInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No




ChatMessageCreateWithoutChatInput

Name Type Nullable
id String No
content JsonNullValueInput | Json No
sender UserCreateNestedOneWithoutChatMessagesInput No

ChatMessageUncheckedCreateWithoutChatInput

Name Type Nullable
id String No
content JsonNullValueInput | Json No
senderId String No

ChatMessageCreateOrConnectWithoutChatInput

Name Type Nullable
where ChatMessageWhereUniqueInput No
create ChatMessageCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput No

ChatMessageCreateManyChatInputEnvelope

Name Type Nullable
data ChatMessageCreateManyChatInput[] No
skipDuplicates Boolean No

ChatsOnUsersCreateWithoutChatInput

Name Type Nullable
id String No
user UserCreateNestedOneWithoutChatsInput No

ChatsOnUsersUncheckedCreateWithoutChatInput

Name Type Nullable
id String No
userId String No

ChatsOnUsersCreateOrConnectWithoutChatInput

Name Type Nullable
where ChatsOnUsersWhereUniqueInput No
create ChatsOnUsersCreateWithoutChatInput | ChatsOnUsersUncheckedCreateWithoutChatInput No

ChatsOnUsersCreateManyChatInputEnvelope

Name Type Nullable
data ChatsOnUsersCreateManyChatInput[] No
skipDuplicates Boolean No


ChatMessageUpdateWithWhereUniqueWithoutChatInput

Name Type Nullable
where ChatMessageWhereUniqueInput No
data ChatMessageUpdateWithoutChatInput | ChatMessageUncheckedUpdateWithoutChatInput No

ChatMessageUpdateManyWithWhereWithoutChatInput

Name Type Nullable
where ChatMessageScalarWhereInput No
data ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutMessagesInput No


ChatsOnUsersUpdateWithWhereUniqueWithoutChatInput

Name Type Nullable
where ChatsOnUsersWhereUniqueInput No
data ChatsOnUsersUpdateWithoutChatInput | ChatsOnUsersUncheckedUpdateWithoutChatInput No

ChatsOnUsersUpdateManyWithWhereWithoutChatInput

Name Type Nullable
where ChatsOnUsersScalarWhereInput No
data ChatsOnUsersUpdateManyMutationInput | ChatsOnUsersUncheckedUpdateManyWithoutUsersInput No

ChatCreateWithoutMessagesInput

Name Type Nullable
id String No
users ChatsOnUsersCreateNestedManyWithoutChatInput No

ChatUncheckedCreateWithoutMessagesInput

Name Type Nullable
id String No
users ChatsOnUsersUncheckedCreateNestedManyWithoutChatInput No

ChatCreateOrConnectWithoutMessagesInput

Name Type Nullable
where ChatWhereUniqueInput No
create ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput No

UserCreateWithoutChatMessagesInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutChatMessagesInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutChatMessagesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput No


ChatUpdateWithoutMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
users ChatsOnUsersUpdateManyWithoutChatInput No

ChatUncheckedUpdateWithoutMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
users ChatsOnUsersUncheckedUpdateManyWithoutChatInput No


UserUpdateWithoutChatMessagesInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutChatMessagesInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

ChatCreateWithoutUsersInput

Name Type Nullable
id String No
messages ChatMessageCreateNestedManyWithoutChatInput No

ChatUncheckedCreateWithoutUsersInput

Name Type Nullable
id String No
messages ChatMessageUncheckedCreateNestedManyWithoutChatInput No

ChatCreateOrConnectWithoutUsersInput

Name Type Nullable
where ChatWhereUniqueInput No
create ChatCreateWithoutUsersInput | ChatUncheckedCreateWithoutUsersInput No

UserCreateWithoutChatsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutChatsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutChatsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput No


ChatUpdateWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
messages ChatMessageUpdateManyWithoutChatInput No

ChatUncheckedUpdateWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
messages ChatMessageUncheckedUpdateManyWithoutChatInput No


UserUpdateWithoutChatsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutChatsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

UserActivityCreateWithoutPostInput

Name Type Nullable
id String No
createdAt DateTime No
type UserActivityType No
comment CommentCreateNestedOneWithoutActivitiesInput No
follow FollowCreateNestedOneWithoutActivitiesInput No
friendship FriendshipCreateNestedOneWithoutActivitiesInput No
user UserCreateNestedOneWithoutActivitiesInput No

UserActivityUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
followId String | Null Yes
friendshipId String | Null Yes
type UserActivityType No
userId String No

UserActivityCreateOrConnectWithoutPostInput

Name Type Nullable
where UserActivityWhereUniqueInput No
create UserActivityCreateWithoutPostInput | UserActivityUncheckedCreateWithoutPostInput No

UserActivityCreateManyPostInputEnvelope

Name Type Nullable
data UserActivityCreateManyPostInput[] No
skipDuplicates Boolean No

UserCreateWithoutPostsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutPostsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutPostsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput No

CommentCreateWithoutPostInput

Name Type Nullable
id String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutCommentInput No
author UserCreateNestedOneWithoutCommentsInput No
parent CommentCreateNestedOneWithoutRepliesInput No
replies CommentCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterCreateNestedManyWithoutCommentInput No

CommentUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutCommentInput No
replies CommentUncheckedCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput No

CommentCreateOrConnectWithoutPostInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput No

CommentCreateManyPostInputEnvelope

Name Type Nullable
data CommentCreateManyPostInput[] No
skipDuplicates Boolean No

PostImageCreateWithoutPostInput

Name Type Nullable
id String No
url String No
createdAt DateTime No

PostImageUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
url String No
createdAt DateTime No

PostImageCreateOrConnectWithoutPostInput

Name Type Nullable
where PostImageWhereUniqueInput No
create PostImageCreateWithoutPostInput | PostImageUncheckedCreateWithoutPostInput No

PostImageCreateManyPostInputEnvelope

Name Type Nullable
data PostImageCreateManyPostInput[] No
skipDuplicates Boolean No

SkillsOnPostsCreateWithoutPostInput

Name Type Nullable
id String No
skill SkillCreateNestedOneWithoutPostsInput No

SkillsOnPostsUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
skillId String No

SkillsOnPostsCreateOrConnectWithoutPostInput

Name Type Nullable
where SkillsOnPostsWhereUniqueInput No
create SkillsOnPostsCreateWithoutPostInput | SkillsOnPostsUncheckedCreateWithoutPostInput No

SkillsOnPostsCreateManyPostInputEnvelope

Name Type Nullable
data SkillsOnPostsCreateManyPostInput[] No
skipDuplicates Boolean No

PostUpvoterCreateWithoutPostInput

Name Type Nullable
id String No
upvote Boolean No
user UserCreateNestedOneWithoutUpvotedPostsInput No

PostUpvoterUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
upvote Boolean No
userId String No

PostUpvoterCreateOrConnectWithoutPostInput

Name Type Nullable
where PostUpvoterWhereUniqueInput No
create PostUpvoterCreateWithoutPostInput | PostUpvoterUncheckedCreateWithoutPostInput No

PostUpvoterCreateManyPostInputEnvelope

Name Type Nullable
data PostUpvoterCreateManyPostInput[] No
skipDuplicates Boolean No


UserActivityUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where UserActivityWhereUniqueInput No
data UserActivityUpdateWithoutPostInput | UserActivityUncheckedUpdateWithoutPostInput No

UserActivityUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where UserActivityScalarWhereInput No
data UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput No


UserUpdateWithoutPostsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutPostsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No


CommentUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where CommentWhereUniqueInput No
data CommentUpdateWithoutPostInput | CommentUncheckedUpdateWithoutPostInput No

CommentUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where CommentScalarWhereInput No
data CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutCommentsInput No


PostImageUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where PostImageWhereUniqueInput No
data PostImageUpdateWithoutPostInput | PostImageUncheckedUpdateWithoutPostInput No

PostImageUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where PostImageScalarWhereInput No
data PostImageUpdateManyMutationInput | PostImageUncheckedUpdateManyWithoutImagesInput No

PostImageScalarWhereInput

Name Type Nullable
AND PostImageScalarWhereInput | PostImageScalarWhereInput[] No
OR PostImageScalarWhereInput[] No
NOT PostImageScalarWhereInput | PostImageScalarWhereInput[] No
id StringFilter | String No
postId StringFilter | String No
url StringFilter | String No
createdAt DateTimeFilter | DateTime No


SkillsOnPostsUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where SkillsOnPostsWhereUniqueInput No
data SkillsOnPostsUpdateWithoutPostInput | SkillsOnPostsUncheckedUpdateWithoutPostInput No

SkillsOnPostsUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where SkillsOnPostsScalarWhereInput No
data SkillsOnPostsUpdateManyMutationInput | SkillsOnPostsUncheckedUpdateManyWithoutSkillsInput No

SkillsOnPostsScalarWhereInput

Name Type Nullable
AND SkillsOnPostsScalarWhereInput | SkillsOnPostsScalarWhereInput[] No
OR SkillsOnPostsScalarWhereInput[] No
NOT SkillsOnPostsScalarWhereInput | SkillsOnPostsScalarWhereInput[] No
id StringFilter | String No
postId StringFilter | String No
skillId StringFilter | String No


PostUpvoterUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where PostUpvoterWhereUniqueInput No
data PostUpvoterUpdateWithoutPostInput | PostUpvoterUncheckedUpdateWithoutPostInput No

PostUpvoterUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where PostUpvoterScalarWhereInput No
data PostUpvoterUpdateManyMutationInput | PostUpvoterUncheckedUpdateManyWithoutUpvotersInput No

PostCreateWithoutUpvotersInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
comments CommentCreateNestedManyWithoutPostInput No
images PostImageCreateNestedManyWithoutPostInput No
skills SkillsOnPostsCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutUpvotersInput

Name Type Nullable
authorName String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityUncheckedCreateNestedManyWithoutPostInput No
comments CommentUncheckedCreateNestedManyWithoutPostInput No
images PostImageUncheckedCreateNestedManyWithoutPostInput No
skills SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutUpvotersInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutUpvotersInput | PostUncheckedCreateWithoutUpvotersInput No

UserCreateWithoutUpvotedPostsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutUpvotedPostsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutUpvotedPostsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUpvotedPostsInput | UserUncheckedCreateWithoutUpvotedPostsInput No


PostUpdateWithoutUpvotersInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutPostInput No
author UserUpdateOneRequiredWithoutPostsInput No
comments CommentUpdateManyWithoutPostInput No
images PostImageUpdateManyWithoutPostInput No
skills SkillsOnPostsUpdateManyWithoutPostInput No

PostUncheckedUpdateWithoutUpvotersInput

Name Type Nullable
authorName String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutPostInput No
comments CommentUncheckedUpdateManyWithoutPostInput No
images PostImageUncheckedUpdateManyWithoutPostInput No
skills SkillsOnPostsUncheckedUpdateManyWithoutPostInput No


UserUpdateWithoutUpvotedPostsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutUpvotedPostsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No

PostCreateWithoutImagesInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
comments CommentCreateNestedManyWithoutPostInput No
skills SkillsOnPostsCreateNestedManyWithoutPostInput No
upvoters PostUpvoterCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutImagesInput

Name Type Nullable
authorName String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityUncheckedCreateNestedManyWithoutPostInput No
comments CommentUncheckedCreateNestedManyWithoutPostInput No
skills SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput No
upvoters PostUpvoterUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutImagesInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput No


PostUpdateWithoutImagesInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutPostInput No
author UserUpdateOneRequiredWithoutPostsInput No
comments CommentUpdateManyWithoutPostInput No
skills SkillsOnPostsUpdateManyWithoutPostInput No
upvoters PostUpvoterUpdateManyWithoutPostInput No

PostUncheckedUpdateWithoutImagesInput

Name Type Nullable
authorName String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutPostInput No
comments CommentUncheckedUpdateManyWithoutPostInput No
skills SkillsOnPostsUncheckedUpdateManyWithoutPostInput No
upvoters PostUpvoterUncheckedUpdateManyWithoutPostInput No

UserActivityCreateWithoutCommentInput

Name Type Nullable
id String No
createdAt DateTime No
type UserActivityType No
follow FollowCreateNestedOneWithoutActivitiesInput No
friendship FriendshipCreateNestedOneWithoutActivitiesInput No
post PostCreateNestedOneWithoutActivitiesInput No
user UserCreateNestedOneWithoutActivitiesInput No

UserActivityUncheckedCreateWithoutCommentInput

Name Type Nullable
id String No
createdAt DateTime No
followId String | Null Yes
friendshipId String | Null Yes
postId String | Null Yes
type UserActivityType No
userId String No

UserActivityCreateOrConnectWithoutCommentInput

Name Type Nullable
where UserActivityWhereUniqueInput No
create UserActivityCreateWithoutCommentInput | UserActivityUncheckedCreateWithoutCommentInput No

UserActivityCreateManyCommentInputEnvelope

Name Type Nullable
data UserActivityCreateManyCommentInput[] No
skipDuplicates Boolean No

UserCreateWithoutCommentsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutCommentsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutCommentsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput No

CommentCreateWithoutRepliesInput

Name Type Nullable
id String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutCommentInput No
author UserCreateNestedOneWithoutCommentsInput No
parent CommentCreateNestedOneWithoutRepliesInput No
post PostCreateNestedOneWithoutCommentsInput No
upvoters CommentUpvoterCreateNestedManyWithoutCommentInput No

CommentUncheckedCreateWithoutRepliesInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
postId String | Null Yes
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutCommentInput No
upvoters CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput No

CommentCreateOrConnectWithoutRepliesInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutRepliesInput | CommentUncheckedCreateWithoutRepliesInput No

PostCreateWithoutCommentsInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
images PostImageCreateNestedManyWithoutPostInput No
skills SkillsOnPostsCreateNestedManyWithoutPostInput No
upvoters PostUpvoterCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutCommentsInput

Name Type Nullable
authorName String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityUncheckedCreateNestedManyWithoutPostInput No
images PostImageUncheckedCreateNestedManyWithoutPostInput No
skills SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput No
upvoters PostUpvoterUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutCommentsInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput No

CommentCreateWithoutParentInput

Name Type Nullable
id String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutCommentInput No
author UserCreateNestedOneWithoutCommentsInput No
post PostCreateNestedOneWithoutCommentsInput No
replies CommentCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterCreateNestedManyWithoutCommentInput No

CommentUncheckedCreateWithoutParentInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
postId String | Null Yes
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutCommentInput No
replies CommentUncheckedCreateNestedManyWithoutParentInput No
upvoters CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput No

CommentCreateOrConnectWithoutParentInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput No

CommentCreateManyParentInputEnvelope

Name Type Nullable
data CommentCreateManyParentInput[] No
skipDuplicates Boolean No

CommentUpvoterCreateWithoutCommentInput

Name Type Nullable
id String No
upvote Boolean No
user UserCreateNestedOneWithoutUpvotedCommentsInput No

CommentUpvoterUncheckedCreateWithoutCommentInput

Name Type Nullable
id String No
upvote Boolean No
userId String No

CommentUpvoterCreateOrConnectWithoutCommentInput

Name Type Nullable
where CommentUpvoterWhereUniqueInput No
create CommentUpvoterCreateWithoutCommentInput | CommentUpvoterUncheckedCreateWithoutCommentInput No

CommentUpvoterCreateManyCommentInputEnvelope

Name Type Nullable
data CommentUpvoterCreateManyCommentInput[] No
skipDuplicates Boolean No


UserActivityUpdateWithWhereUniqueWithoutCommentInput

Name Type Nullable
where UserActivityWhereUniqueInput No
data UserActivityUpdateWithoutCommentInput | UserActivityUncheckedUpdateWithoutCommentInput No

UserActivityUpdateManyWithWhereWithoutCommentInput

Name Type Nullable
where UserActivityScalarWhereInput No
data UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput No


UserUpdateWithoutCommentsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutCommentsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No



CommentUncheckedUpdateWithoutRepliesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
parentId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutCommentInput No
upvoters CommentUpvoterUncheckedUpdateManyWithoutCommentInput No


PostUpdateWithoutCommentsInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutPostInput No
author UserUpdateOneRequiredWithoutPostsInput No
images PostImageUpdateManyWithoutPostInput No
skills SkillsOnPostsUpdateManyWithoutPostInput No
upvoters PostUpvoterUpdateManyWithoutPostInput No

PostUncheckedUpdateWithoutCommentsInput

Name Type Nullable
authorName String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutPostInput No
images PostImageUncheckedUpdateManyWithoutPostInput No
skills SkillsOnPostsUncheckedUpdateManyWithoutPostInput No
upvoters PostUpvoterUncheckedUpdateManyWithoutPostInput No


CommentUpdateWithWhereUniqueWithoutParentInput

Name Type Nullable
where CommentWhereUniqueInput No
data CommentUpdateWithoutParentInput | CommentUncheckedUpdateWithoutParentInput No

CommentUpdateManyWithWhereWithoutParentInput

Name Type Nullable
where CommentScalarWhereInput No
data CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutRepliesInput No


CommentUpvoterUpdateWithWhereUniqueWithoutCommentInput

Name Type Nullable
where CommentUpvoterWhereUniqueInput No
data CommentUpvoterUpdateWithoutCommentInput | CommentUpvoterUncheckedUpdateWithoutCommentInput No

CommentUpvoterUpdateManyWithWhereWithoutCommentInput

Name Type Nullable
where CommentUpvoterScalarWhereInput No
data CommentUpvoterUpdateManyMutationInput | CommentUpvoterUncheckedUpdateManyWithoutUpvotersInput No

CommentCreateWithoutUpvotersInput

Name Type Nullable
id String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
updatedAt DateTime No
activities UserActivityCreateNestedManyWithoutCommentInput No
author UserCreateNestedOneWithoutCommentsInput No
parent CommentCreateNestedOneWithoutRepliesInput No
post PostCreateNestedOneWithoutCommentsInput No
replies CommentCreateNestedManyWithoutParentInput No

CommentUncheckedCreateWithoutUpvotersInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
postId String | Null Yes
updatedAt DateTime No
activities UserActivityUncheckedCreateNestedManyWithoutCommentInput No
replies CommentUncheckedCreateNestedManyWithoutParentInput No

CommentCreateOrConnectWithoutUpvotersInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutUpvotersInput | CommentUncheckedCreateWithoutUpvotersInput No

UserCreateWithoutUpvotedCommentsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutUpvotedCommentsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutUpvotedCommentsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUpvotedCommentsInput | UserUncheckedCreateWithoutUpvotedCommentsInput No



CommentUncheckedUpdateWithoutUpvotersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
parentId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutCommentInput No
replies CommentUncheckedUpdateManyWithoutParentInput No


UserUpdateWithoutUpvotedCommentsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutUpvotedCommentsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

SkillsOnUsersCreateWithoutSkillInput

Name Type Nullable
id String No
user UserCreateNestedOneWithoutSkillsInput No

SkillsOnUsersUncheckedCreateWithoutSkillInput

Name Type Nullable
id String No
userId String No

SkillsOnUsersCreateOrConnectWithoutSkillInput

Name Type Nullable
where SkillsOnUsersWhereUniqueInput No
create SkillsOnUsersCreateWithoutSkillInput | SkillsOnUsersUncheckedCreateWithoutSkillInput No

SkillsOnUsersCreateManySkillInputEnvelope

Name Type Nullable
data SkillsOnUsersCreateManySkillInput[] No
skipDuplicates Boolean No

DesiredSkillsOnUsersCreateWithoutSkillInput

Name Type Nullable
id String No
user UserCreateNestedOneWithoutDesiredSkillsInput No

DesiredSkillsOnUsersUncheckedCreateWithoutSkillInput

Name Type Nullable
id String No
userId String No

DesiredSkillsOnUsersCreateOrConnectWithoutSkillInput

Name Type Nullable
where DesiredSkillsOnUsersWhereUniqueInput No
create DesiredSkillsOnUsersCreateWithoutSkillInput | DesiredSkillsOnUsersUncheckedCreateWithoutSkillInput No

DesiredSkillsOnUsersCreateManySkillInputEnvelope

Name Type Nullable
data DesiredSkillsOnUsersCreateManySkillInput[] No
skipDuplicates Boolean No

SkillsOnPostsCreateWithoutSkillInput

Name Type Nullable
id String No
post PostCreateNestedOneWithoutSkillsInput No

SkillsOnPostsUncheckedCreateWithoutSkillInput

Name Type Nullable
id String No
postId String No

SkillsOnPostsCreateOrConnectWithoutSkillInput

Name Type Nullable
where SkillsOnPostsWhereUniqueInput No
create SkillsOnPostsCreateWithoutSkillInput | SkillsOnPostsUncheckedCreateWithoutSkillInput No

SkillsOnPostsCreateManySkillInputEnvelope

Name Type Nullable
data SkillsOnPostsCreateManySkillInput[] No
skipDuplicates Boolean No

SkillsOnRepositoriesCreateWithoutSkillInput

Name Type Nullable
id String No
repository RepositoryCreateNestedOneWithoutSkillsInput No

SkillsOnRepositoriesUncheckedCreateWithoutSkillInput

Name Type Nullable
id String No
repositoryId String No

SkillsOnRepositoriesCreateOrConnectWithoutSkillInput

Name Type Nullable
where SkillsOnRepositoriesWhereUniqueInput No
create SkillsOnRepositoriesCreateWithoutSkillInput | SkillsOnRepositoriesUncheckedCreateWithoutSkillInput No

SkillsOnRepositoriesCreateManySkillInputEnvelope

Name Type Nullable
data SkillsOnRepositoriesCreateManySkillInput[] No
skipDuplicates Boolean No

FollowSkillCreateWithoutFollowingInput

Name Type Nullable
id String No
follow FollowCreateNestedOneWithoutFollowingSkillInput No
follower UserCreateNestedOneWithoutFollowingSkillInput No

FollowSkillUncheckedCreateWithoutFollowingInput

Name Type Nullable
id String No
followId String No
followerId String No

FollowSkillCreateOrConnectWithoutFollowingInput

Name Type Nullable
where FollowSkillWhereUniqueInput No
create FollowSkillCreateWithoutFollowingInput | FollowSkillUncheckedCreateWithoutFollowingInput No

FollowSkillCreateManyFollowingInputEnvelope

Name Type Nullable
data FollowSkillCreateManyFollowingInput[] No
skipDuplicates Boolean No


SkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput

Name Type Nullable
where SkillsOnUsersWhereUniqueInput No
data SkillsOnUsersUpdateWithoutSkillInput | SkillsOnUsersUncheckedUpdateWithoutSkillInput No

SkillsOnUsersUpdateManyWithWhereWithoutSkillInput

Name Type Nullable
where SkillsOnUsersScalarWhereInput No
data SkillsOnUsersUpdateManyMutationInput | SkillsOnUsersUncheckedUpdateManyWithoutUsersInput No


DesiredSkillsOnUsersUpdateWithWhereUniqueWithoutSkillInput

Name Type Nullable
where DesiredSkillsOnUsersWhereUniqueInput No
data DesiredSkillsOnUsersUpdateWithoutSkillInput | DesiredSkillsOnUsersUncheckedUpdateWithoutSkillInput No

DesiredSkillsOnUsersUpdateManyWithWhereWithoutSkillInput

Name Type Nullable
where DesiredSkillsOnUsersScalarWhereInput No
data DesiredSkillsOnUsersUpdateManyMutationInput | DesiredSkillsOnUsersUncheckedUpdateManyWithoutDesiringUsersInput No


SkillsOnPostsUpdateWithWhereUniqueWithoutSkillInput

Name Type Nullable
where SkillsOnPostsWhereUniqueInput No
data SkillsOnPostsUpdateWithoutSkillInput | SkillsOnPostsUncheckedUpdateWithoutSkillInput No

SkillsOnPostsUpdateManyWithWhereWithoutSkillInput

Name Type Nullable
where SkillsOnPostsScalarWhereInput No
data SkillsOnPostsUpdateManyMutationInput | SkillsOnPostsUncheckedUpdateManyWithoutPostsInput No


SkillsOnRepositoriesUpdateWithWhereUniqueWithoutSkillInput

Name Type Nullable
where SkillsOnRepositoriesWhereUniqueInput No
data SkillsOnRepositoriesUpdateWithoutSkillInput | SkillsOnRepositoriesUncheckedUpdateWithoutSkillInput No

SkillsOnRepositoriesUpdateManyWithWhereWithoutSkillInput

Name Type Nullable
where SkillsOnRepositoriesScalarWhereInput No
data SkillsOnRepositoriesUpdateManyMutationInput | SkillsOnRepositoriesUncheckedUpdateManyWithoutRepositoriesInput No

SkillsOnRepositoriesScalarWhereInput

Name Type Nullable
AND SkillsOnRepositoriesScalarWhereInput | SkillsOnRepositoriesScalarWhereInput[] No
OR SkillsOnRepositoriesScalarWhereInput[] No
NOT SkillsOnRepositoriesScalarWhereInput | SkillsOnRepositoriesScalarWhereInput[] No
id StringFilter | String No
skillId StringFilter | String No
repositoryId StringFilter | String No


FollowSkillUpdateWithWhereUniqueWithoutFollowingInput

Name Type Nullable
where FollowSkillWhereUniqueInput No
data FollowSkillUpdateWithoutFollowingInput | FollowSkillUncheckedUpdateWithoutFollowingInput No

FollowSkillUpdateManyWithWhereWithoutFollowingInput

Name Type Nullable
where FollowSkillScalarWhereInput No
data FollowSkillUpdateManyMutationInput | FollowSkillUncheckedUpdateManyWithoutFollowedByInput No

PostCreateWithoutSkillsInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
comments CommentCreateNestedManyWithoutPostInput No
images PostImageCreateNestedManyWithoutPostInput No
upvoters PostUpvoterCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutSkillsInput

Name Type Nullable
authorName String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No
activities UserActivityUncheckedCreateNestedManyWithoutPostInput No
comments CommentUncheckedCreateNestedManyWithoutPostInput No
images PostImageUncheckedCreateNestedManyWithoutPostInput No
upvoters PostUpvoterUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutSkillsInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutSkillsInput | PostUncheckedCreateWithoutSkillsInput No

SkillCreateWithoutPostsInput

Name Type Nullable
id String No
name String No
owner String No
users SkillsOnUsersCreateNestedManyWithoutSkillInput No
desiringUsers DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput No
repositories SkillsOnRepositoriesCreateNestedManyWithoutSkillInput No
followedBy FollowSkillCreateNestedManyWithoutFollowingInput No

SkillUncheckedCreateWithoutPostsInput

Name Type Nullable
id String No
name String No
owner String No
users SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput No
desiringUsers DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput No
repositories SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput No
followedBy FollowSkillUncheckedCreateNestedManyWithoutFollowingInput No

SkillCreateOrConnectWithoutPostsInput

Name Type Nullable
where SkillWhereUniqueInput No
create SkillCreateWithoutPostsInput | SkillUncheckedCreateWithoutPostsInput No


PostUpdateWithoutSkillsInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutPostInput No
author UserUpdateOneRequiredWithoutPostsInput No
comments CommentUpdateManyWithoutPostInput No
images PostImageUpdateManyWithoutPostInput No
upvoters PostUpvoterUpdateManyWithoutPostInput No

PostUncheckedUpdateWithoutSkillsInput

Name Type Nullable
authorName String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutPostInput No
comments CommentUncheckedUpdateManyWithoutPostInput No
images PostImageUncheckedUpdateManyWithoutPostInput No
upvoters PostUpvoterUncheckedUpdateManyWithoutPostInput No




SkillCreateWithoutUsersInput

Name Type Nullable
id String No
name String No
owner String No
desiringUsers DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput No
posts SkillsOnPostsCreateNestedManyWithoutSkillInput No
repositories SkillsOnRepositoriesCreateNestedManyWithoutSkillInput No
followedBy FollowSkillCreateNestedManyWithoutFollowingInput No

SkillUncheckedCreateWithoutUsersInput

Name Type Nullable
id String No
name String No
owner String No
desiringUsers DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput No
posts SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput No
repositories SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput No
followedBy FollowSkillUncheckedCreateNestedManyWithoutFollowingInput No

SkillCreateOrConnectWithoutUsersInput

Name Type Nullable
where SkillWhereUniqueInput No
create SkillCreateWithoutUsersInput | SkillUncheckedCreateWithoutUsersInput No

UserCreateWithoutSkillsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutSkillsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutSkillsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSkillsInput | UserUncheckedCreateWithoutSkillsInput No





UserUpdateWithoutSkillsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutSkillsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

SkillCreateWithoutDesiringUsersInput

Name Type Nullable
id String No
name String No
owner String No
users SkillsOnUsersCreateNestedManyWithoutSkillInput No
posts SkillsOnPostsCreateNestedManyWithoutSkillInput No
repositories SkillsOnRepositoriesCreateNestedManyWithoutSkillInput No
followedBy FollowSkillCreateNestedManyWithoutFollowingInput No

SkillUncheckedCreateWithoutDesiringUsersInput

Name Type Nullable
id String No
name String No
owner String No
users SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput No
posts SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput No
repositories SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput No
followedBy FollowSkillUncheckedCreateNestedManyWithoutFollowingInput No

SkillCreateOrConnectWithoutDesiringUsersInput

Name Type Nullable
where SkillWhereUniqueInput No
create SkillCreateWithoutDesiringUsersInput | SkillUncheckedCreateWithoutDesiringUsersInput No

UserCreateWithoutDesiredSkillsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutDesiredSkillsInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutDesiredSkillsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutDesiredSkillsInput | UserUncheckedCreateWithoutDesiredSkillsInput No





UserUpdateWithoutDesiredSkillsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutDesiredSkillsInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

SkillsOnRepositoriesCreateWithoutRepositoryInput

Name Type Nullable
id String No
skill SkillCreateNestedOneWithoutRepositoriesInput No

SkillsOnRepositoriesUncheckedCreateWithoutRepositoryInput

Name Type Nullable
id String No
skillId String No

SkillsOnRepositoriesCreateOrConnectWithoutRepositoryInput

Name Type Nullable
where SkillsOnRepositoriesWhereUniqueInput No
create SkillsOnRepositoriesCreateWithoutRepositoryInput | SkillsOnRepositoriesUncheckedCreateWithoutRepositoryInput No

SkillsOnRepositoriesCreateManyRepositoryInputEnvelope

Name Type Nullable
data SkillsOnRepositoriesCreateManyRepositoryInput[] No
skipDuplicates Boolean No

UserCreateWithoutRepositoriesInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
experiences ExperienceCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutRepositoriesInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
experiences ExperienceUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutRepositoriesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutRepositoriesInput | UserUncheckedCreateWithoutRepositoriesInput No


SkillsOnRepositoriesUpdateWithWhereUniqueWithoutRepositoryInput

Name Type Nullable
where SkillsOnRepositoriesWhereUniqueInput No
data SkillsOnRepositoriesUpdateWithoutRepositoryInput | SkillsOnRepositoriesUncheckedUpdateWithoutRepositoryInput No

SkillsOnRepositoriesUpdateManyWithWhereWithoutRepositoryInput

Name Type Nullable
where SkillsOnRepositoriesScalarWhereInput No
data SkillsOnRepositoriesUpdateManyMutationInput | SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillsInput No


UserUpdateWithoutRepositoriesInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
experiences ExperienceUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutRepositoriesInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
experiences ExperienceUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

SkillCreateWithoutRepositoriesInput

Name Type Nullable
id String No
name String No
owner String No
users SkillsOnUsersCreateNestedManyWithoutSkillInput No
desiringUsers DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput No
posts SkillsOnPostsCreateNestedManyWithoutSkillInput No
followedBy FollowSkillCreateNestedManyWithoutFollowingInput No

SkillUncheckedCreateWithoutRepositoriesInput

Name Type Nullable
id String No
name String No
owner String No
users SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput No
desiringUsers DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput No
posts SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput No
followedBy FollowSkillUncheckedCreateNestedManyWithoutFollowingInput No

SkillCreateOrConnectWithoutRepositoriesInput

Name Type Nullable
where SkillWhereUniqueInput No
create SkillCreateWithoutRepositoriesInput | SkillUncheckedCreateWithoutRepositoriesInput No

RepositoryCreateWithoutSkillsInput

Name Type Nullable
id String No
name String No
user UserCreateNestedOneWithoutRepositoriesInput No

RepositoryUncheckedCreateWithoutSkillsInput

Name Type Nullable
id String No
name String No
owner String No

RepositoryCreateOrConnectWithoutSkillsInput

Name Type Nullable
where RepositoryWhereUniqueInput No
create RepositoryCreateWithoutSkillsInput | RepositoryUncheckedCreateWithoutSkillsInput No





RepositoryUpdateWithoutSkillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutRepositoriesInput No

RepositoryUncheckedUpdateWithoutSkillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
owner String | StringFieldUpdateOperationsInput No

ExperienceCreateWithoutOrganizationInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
highlights ExperienceCreatehighlightsInput | String No
user UserCreateNestedOneWithoutExperiencesInput No

ExperienceUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
userId String No
highlights ExperienceCreatehighlightsInput | String No

ExperienceCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where ExperienceWhereUniqueInput No
create ExperienceCreateWithoutOrganizationInput | ExperienceUncheckedCreateWithoutOrganizationInput No

ExperienceCreateManyOrganizationInputEnvelope

Name Type Nullable
data ExperienceCreateManyOrganizationInput[] No
skipDuplicates Boolean No


ExperienceUpdateWithWhereUniqueWithoutOrganizationInput

Name Type Nullable
where ExperienceWhereUniqueInput No
data ExperienceUpdateWithoutOrganizationInput | ExperienceUncheckedUpdateWithoutOrganizationInput No

ExperienceUpdateManyWithWhereWithoutOrganizationInput

Name Type Nullable
where ExperienceScalarWhereInput No
data ExperienceUpdateManyMutationInput | ExperienceUncheckedUpdateManyWithoutExperiencesInput No

OrganizationCreateWithoutExperiencesInput

Name Type Nullable
id String No
name String No

OrganizationUncheckedCreateWithoutExperiencesInput

Name Type Nullable
id String No
name String No

OrganizationCreateOrConnectWithoutExperiencesInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutExperiencesInput | OrganizationUncheckedCreateWithoutExperiencesInput No

UserCreateWithoutExperiencesInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountCreateNestedManyWithoutUserInput No
activities UserActivityCreateNestedManyWithoutUserInput No
chats ChatsOnUsersCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutSenderInput No
comments CommentCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersCreateNestedManyWithoutUserInput No
followedBy FollowUserCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillCreateNestedManyWithoutFollowerInput No
followingUser FollowUserCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipCreateNestedManyWithoutFriendingInput No
friending FriendshipCreateNestedManyWithoutFrienderInput No
posts PostCreateNestedManyWithoutAuthorInput No
repositories RepositoryCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
skills SkillsOnUsersCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutExperiencesInput

Name Type Nullable
createdAt DateTime No
description String | Null Yes
email String No
emailVerified DateTime | Null Yes
id String No
image String | Null Yes
name String No
updatedAt DateTime No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
activities UserActivityUncheckedCreateNestedManyWithoutUserInput No
chats ChatsOnUsersUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutSenderInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
followedBy FollowUserUncheckedCreateNestedManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedCreateNestedManyWithoutFollowerInput No
followingUser FollowUserUncheckedCreateNestedManyWithoutFollowerInput No
friendedBy FriendshipUncheckedCreateNestedManyWithoutFriendingInput No
friending FriendshipUncheckedCreateNestedManyWithoutFrienderInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
repositories RepositoryUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
skills SkillsOnUsersUncheckedCreateNestedManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedCreateNestedManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutExperiencesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutExperiencesInput | UserUncheckedCreateWithoutExperiencesInput No


OrganizationUpdateWithoutExperiencesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

OrganizationUncheckedUpdateWithoutExperiencesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No


UserUpdateWithoutExperiencesInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUpdateManyWithoutUserInput No
activities UserActivityUpdateManyWithoutUserInput No
chats ChatsOnUsersUpdateManyWithoutUserInput No
chatMessages ChatMessageUpdateManyWithoutSenderInput No
comments CommentUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUpdateManyWithoutUserInput No
followedBy FollowUserUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUpdateManyWithoutFollowerInput No
followingUser FollowUserUpdateManyWithoutFollowerInput No
friendedBy FriendshipUpdateManyWithoutFriendingInput No
friending FriendshipUpdateManyWithoutFrienderInput No
posts PostUpdateManyWithoutAuthorInput No
repositories RepositoryUpdateManyWithoutUserInput No
sessions SessionUpdateManyWithoutUserInput No
skills SkillsOnUsersUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUpdateManyWithoutUserInput No

UserUncheckedUpdateWithoutExperiencesInput

Name Type Nullable
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
name String | StringFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
accounts AccountUncheckedUpdateManyWithoutUserInput No
activities UserActivityUncheckedUpdateManyWithoutUserInput No
chats ChatsOnUsersUncheckedUpdateManyWithoutUserInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutSenderInput No
comments CommentUncheckedUpdateManyWithoutAuthorInput No
desiredSkills DesiredSkillsOnUsersUncheckedUpdateManyWithoutUserInput No
followedBy FollowUserUncheckedUpdateManyWithoutFollowingInput No
followingSkill FollowSkillUncheckedUpdateManyWithoutFollowerInput No
followingUser FollowUserUncheckedUpdateManyWithoutFollowerInput No
friendedBy FriendshipUncheckedUpdateManyWithoutFriendingInput No
friending FriendshipUncheckedUpdateManyWithoutFrienderInput No
posts PostUncheckedUpdateManyWithoutAuthorInput No
repositories RepositoryUncheckedUpdateManyWithoutUserInput No
sessions SessionUncheckedUpdateManyWithoutUserInput No
skills SkillsOnUsersUncheckedUpdateManyWithoutUserInput No
upvotedComments CommentUpvoterUncheckedUpdateManyWithoutUserInput No
upvotedPosts PostUpvoterUncheckedUpdateManyWithoutUserInput No

AccountCreateManyUserInput

Name Type Nullable
access_token String | Null Yes
expires_at Int | Null Yes
id String No
id_token String | Null Yes
provider String No
providerAccountId String No
oauth_token String | Null Yes
oauth_token_secret String | Null Yes
refresh_token String | Null Yes
scope String | Null Yes
session_state String | Null Yes
token_type String | Null Yes
type String No

UserActivityCreateManyUserInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
followId String | Null Yes
friendshipId String | Null Yes
postId String | Null Yes
type UserActivityType No

ChatsOnUsersCreateManyUserInput

Name Type Nullable
id String No
chatId String No

ChatMessageCreateManySenderInput

Name Type Nullable
id String No
chatId String No
content JsonNullValueInput | Json No

CommentCreateManyAuthorInput

Name Type Nullable
id String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
postId String | Null Yes
updatedAt DateTime No

DesiredSkillsOnUsersCreateManyUserInput

Name Type Nullable
id String No
skillId String No

ExperienceCreateManyUserInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
organizationName String No
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
highlights ExperienceCreateManyhighlightsInput | String No

FollowUserCreateManyFollowingInput

Name Type Nullable
id String No
followId String No
followerId String No

FollowSkillCreateManyFollowerInput

Name Type Nullable
id String No
followId String No
followingId String No

FollowUserCreateManyFollowerInput

Name Type Nullable
id String No
followId String No
followingId String No

FriendshipCreateManyFriendingInput

Name Type Nullable
id String No
frienderId String No
rejected Boolean No
updatedAt DateTime No

FriendshipCreateManyFrienderInput

Name Type Nullable
id String No
friendingId String No
rejected Boolean No
updatedAt DateTime No

PostCreateManyAuthorInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime No
description String | Null Yes
id String No
publishedAt DateTime | Null Yes
readTime Int | Null Yes
title String | Null Yes
thumbnailUrl String | Null Yes
updatedAt DateTime No
urlSlug String No

RepositoryCreateManyUserInput

Name Type Nullable
id String No
name String No

SessionCreateManyUserInput

Name Type Nullable
expires DateTime No
id String No
sessionToken String No

SkillsOnUsersCreateManyUserInput

Name Type Nullable
id String No
skillId String No

CommentUpvoterCreateManyUserInput

Name Type Nullable
id String No
commentId String No
upvote Boolean No

PostUpvoterCreateManyUserInput

Name Type Nullable
id String No
postId String No
upvote Boolean No

AccountUpdateWithoutUserInput

Name Type Nullable
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

AccountUncheckedUpdateWithoutUserInput

Name Type Nullable
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No

AccountUncheckedUpdateManyWithoutAccountsInput

Name Type Nullable
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | StringFieldUpdateOperationsInput No


UserActivityUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followId String | NullableStringFieldUpdateOperationsInput | Null Yes
friendshipId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No

UserActivityUncheckedUpdateManyWithoutActivitiesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followId String | NullableStringFieldUpdateOperationsInput | Null Yes
friendshipId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No

ChatsOnUsersUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chat ChatUpdateOneRequiredWithoutUsersInput No

ChatsOnUsersUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chatId String | StringFieldUpdateOperationsInput No

ChatsOnUsersUncheckedUpdateManyWithoutChatsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chatId String | StringFieldUpdateOperationsInput No

ChatMessageUpdateWithoutSenderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No
chat ChatUpdateOneRequiredWithoutMessagesInput No

ChatMessageUncheckedUpdateWithoutSenderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chatId String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No

ChatMessageUncheckedUpdateManyWithoutChatMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
chatId String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No


CommentUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
parentId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutCommentInput No
replies CommentUncheckedUpdateManyWithoutParentInput No
upvoters CommentUpvoterUncheckedUpdateManyWithoutCommentInput No

CommentUncheckedUpdateManyWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
parentId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

DesiredSkillsOnUsersUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skill SkillUpdateOneRequiredWithoutDesiringUsersInput No

DesiredSkillsOnUsersUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

DesiredSkillsOnUsersUncheckedUpdateManyWithoutDesiredSkillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

ExperienceUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
positionName String | StringFieldUpdateOperationsInput No
startDate DateTime | DateTimeFieldUpdateOperationsInput No
type ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null Yes
highlights ExperienceUpdatehighlightsInput | String No
organization OrganizationUpdateOneRequiredWithoutExperiencesInput No

ExperienceUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
organizationName String | StringFieldUpdateOperationsInput No
positionName String | StringFieldUpdateOperationsInput No
startDate DateTime | DateTimeFieldUpdateOperationsInput No
type ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null Yes
highlights ExperienceUpdatehighlightsInput | String No

ExperienceUncheckedUpdateManyWithoutExperiencesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
organizationName String | StringFieldUpdateOperationsInput No
positionName String | StringFieldUpdateOperationsInput No
startDate DateTime | DateTimeFieldUpdateOperationsInput No
type ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null Yes
highlights ExperienceUpdatehighlightsInput | String No

FollowUserUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follow FollowUpdateOneRequiredWithoutFollowingUserInput No
follower UserUpdateOneRequiredWithoutFollowingUserInput No

FollowUserUncheckedUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No

FollowUserUncheckedUpdateManyWithoutFollowedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No

FollowSkillUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follow FollowUpdateOneRequiredWithoutFollowingSkillInput No
following SkillUpdateOneRequiredWithoutFollowedByInput No

FollowSkillUncheckedUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

FollowSkillUncheckedUpdateManyWithoutFollowingSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

FollowUserUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follow FollowUpdateOneRequiredWithoutFollowingUserInput No
following UserUpdateOneRequiredWithoutFollowedByInput No

FollowUserUncheckedUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

FollowUserUncheckedUpdateManyWithoutFollowingUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followingId String | StringFieldUpdateOperationsInput No

FriendshipUpdateWithoutFriendingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutFriendshipInput No
friender UserUpdateOneRequiredWithoutFriendingInput No

FriendshipUncheckedUpdateWithoutFriendingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
frienderId String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutFriendshipInput No

FriendshipUncheckedUpdateManyWithoutFriendedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
frienderId String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FriendshipUpdateWithoutFrienderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutFriendshipInput No
friending UserUpdateOneRequiredWithoutFriendedByInput No

FriendshipUncheckedUpdateWithoutFrienderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
friendingId String | StringFieldUpdateOperationsInput No
rejected Boolean | BoolFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutFriendshipInput No

PostUpdateWithoutAuthorInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUpdateManyWithoutPostInput No
comments CommentUpdateManyWithoutPostInput No
images PostImageUpdateManyWithoutPostInput No
skills SkillsOnPostsUpdateManyWithoutPostInput No
upvoters PostUpvoterUpdateManyWithoutPostInput No

PostUncheckedUpdateWithoutAuthorInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutPostInput No
comments CommentUncheckedUpdateManyWithoutPostInput No
images PostImageUncheckedUpdateManyWithoutPostInput No
skills SkillsOnPostsUncheckedUpdateManyWithoutPostInput No
upvoters PostUpvoterUncheckedUpdateManyWithoutPostInput No

PostUncheckedUpdateManyWithoutPostsInput

Name Type Nullable
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
id String | StringFieldUpdateOperationsInput No
publishedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
readTime Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | NullableStringFieldUpdateOperationsInput | Null Yes
thumbnailUrl String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
urlSlug String | StringFieldUpdateOperationsInput No

RepositoryUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
skills SkillsOnRepositoriesUpdateManyWithoutRepositoryInput No

RepositoryUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
skills SkillsOnRepositoriesUncheckedUpdateManyWithoutRepositoryInput No

RepositoryUncheckedUpdateManyWithoutRepositoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

SessionUpdateWithoutUserInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No

SessionUncheckedUpdateWithoutUserInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No

SessionUncheckedUpdateManyWithoutSessionsInput

Name Type Nullable
expires DateTime | DateTimeFieldUpdateOperationsInput No
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No

SkillsOnUsersUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skill SkillUpdateOneRequiredWithoutUsersInput No

SkillsOnUsersUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

SkillsOnUsersUncheckedUpdateManyWithoutSkillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

CommentUpvoterUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
comment CommentUpdateOneRequiredWithoutUpvotersInput No

CommentUpvoterUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No

CommentUpvoterUncheckedUpdateManyWithoutUpvotedCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No

PostUpvoterUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
post PostUpdateOneRequiredWithoutUpvotersInput No

PostUpvoterUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No

PostUpvoterUncheckedUpdateManyWithoutUpvotedPostsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No

UserActivityCreateManyFriendshipInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
followId String | Null Yes
postId String | Null Yes
type UserActivityType No
userId String No


UserActivityUncheckedUpdateWithoutFriendshipInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

UserActivityCreateManyFollowInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
friendshipId String | Null Yes
postId String | Null Yes
type UserActivityType No
userId String No


UserActivityUncheckedUpdateWithoutFollowInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
friendshipId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

ChatMessageCreateManyChatInput

Name Type Nullable
id String No
content JsonNullValueInput | Json No
senderId String No

ChatsOnUsersCreateManyChatInput

Name Type Nullable
id String No
userId String No

ChatMessageUpdateWithoutChatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No
sender UserUpdateOneRequiredWithoutChatMessagesInput No

ChatMessageUncheckedUpdateWithoutChatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No
senderId String | StringFieldUpdateOperationsInput No

ChatMessageUncheckedUpdateManyWithoutMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
content JsonNullValueInput | Json No
senderId String | StringFieldUpdateOperationsInput No

ChatsOnUsersUpdateWithoutChatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutChatsInput No

ChatsOnUsersUncheckedUpdateWithoutChatInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

ChatsOnUsersUncheckedUpdateManyWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

UserActivityCreateManyPostInput

Name Type Nullable
id String No
commentId String | Null Yes
createdAt DateTime No
followId String | Null Yes
friendshipId String | Null Yes
type UserActivityType No
userId String No

CommentCreateManyPostInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
parentId String | Null Yes
updatedAt DateTime No

PostImageCreateManyPostInput

Name Type Nullable
id String No
url String No
createdAt DateTime No

SkillsOnPostsCreateManyPostInput

Name Type Nullable
id String No
skillId String No

PostUpvoterCreateManyPostInput

Name Type Nullable
id String No
upvote Boolean No
userId String No


UserActivityUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followId String | NullableStringFieldUpdateOperationsInput | Null Yes
friendshipId String | NullableStringFieldUpdateOperationsInput | Null Yes
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No


CommentUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
parentId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutCommentInput No
replies CommentUncheckedUpdateManyWithoutParentInput No
upvoters CommentUpvoterUncheckedUpdateManyWithoutCommentInput No

PostImageUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PostImageUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PostImageUncheckedUpdateManyWithoutImagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

SkillsOnPostsUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skill SkillUpdateOneRequiredWithoutPostsInput No

SkillsOnPostsUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

SkillsOnPostsUncheckedUpdateManyWithoutSkillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

PostUpvoterUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutUpvotedPostsInput No

PostUpvoterUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

PostUpvoterUncheckedUpdateManyWithoutUpvotersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

UserActivityCreateManyCommentInput

Name Type Nullable
id String No
createdAt DateTime No
followId String | Null Yes
friendshipId String | Null Yes
postId String | Null Yes
type UserActivityType No
userId String No

CommentCreateManyParentInput

Name Type Nullable
id String No
authorId String No
content NullableJsonNullValueInput | Json No
createdAt DateTime No
postId String | Null Yes
updatedAt DateTime No

CommentUpvoterCreateManyCommentInput

Name Type Nullable
id String No
upvote Boolean No
userId String No


UserActivityUncheckedUpdateWithoutCommentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
followId String | NullableStringFieldUpdateOperationsInput | Null Yes
friendshipId String | NullableStringFieldUpdateOperationsInput | Null Yes
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
type UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No


CommentUncheckedUpdateWithoutParentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
activities UserActivityUncheckedUpdateManyWithoutCommentInput No
replies CommentUncheckedUpdateManyWithoutParentInput No
upvoters CommentUpvoterUncheckedUpdateManyWithoutCommentInput No

CommentUncheckedUpdateManyWithoutRepliesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

CommentUpvoterUpdateWithoutCommentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutUpvotedCommentsInput No

CommentUpvoterUncheckedUpdateWithoutCommentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

CommentUpvoterUncheckedUpdateManyWithoutUpvotersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
upvote Boolean | BoolFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

SkillsOnUsersCreateManySkillInput

Name Type Nullable
id String No
userId String No

DesiredSkillsOnUsersCreateManySkillInput

Name Type Nullable
id String No
userId String No

SkillsOnPostsCreateManySkillInput

Name Type Nullable
id String No
postId String No

SkillsOnRepositoriesCreateManySkillInput

Name Type Nullable
id String No
repositoryId String No

FollowSkillCreateManyFollowingInput

Name Type Nullable
id String No
followId String No
followerId String No

SkillsOnUsersUpdateWithoutSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutSkillsInput No

SkillsOnUsersUncheckedUpdateWithoutSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

SkillsOnUsersUncheckedUpdateManyWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

DesiredSkillsOnUsersUpdateWithoutSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutDesiredSkillsInput No

DesiredSkillsOnUsersUncheckedUpdateWithoutSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

DesiredSkillsOnUsersUncheckedUpdateManyWithoutDesiringUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

SkillsOnPostsUpdateWithoutSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
post PostUpdateOneRequiredWithoutSkillsInput No

SkillsOnPostsUncheckedUpdateWithoutSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No

SkillsOnPostsUncheckedUpdateManyWithoutPostsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | StringFieldUpdateOperationsInput No

SkillsOnRepositoriesUpdateWithoutSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
repository RepositoryUpdateOneRequiredWithoutSkillsInput No

SkillsOnRepositoriesUncheckedUpdateWithoutSkillInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
repositoryId String | StringFieldUpdateOperationsInput No

SkillsOnRepositoriesUncheckedUpdateManyWithoutRepositoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
repositoryId String | StringFieldUpdateOperationsInput No

FollowSkillUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follow FollowUpdateOneRequiredWithoutFollowingSkillInput No
follower UserUpdateOneRequiredWithoutFollowingSkillInput No

FollowSkillUncheckedUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No

FollowSkillUncheckedUpdateManyWithoutFollowedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followId String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No

SkillsOnRepositoriesCreateManyRepositoryInput

Name Type Nullable
id String No
skillId String No

SkillsOnRepositoriesUpdateWithoutRepositoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skill SkillUpdateOneRequiredWithoutRepositoriesInput No

SkillsOnRepositoriesUncheckedUpdateWithoutRepositoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
skillId String | StringFieldUpdateOperationsInput No

ExperienceCreateManyOrganizationInput

Name Type Nullable
id String No
endDate DateTime | Null Yes
location String | Null Yes
positionName String No
startDate DateTime No
type ExperienceType | Null Yes
userId String No
highlights ExperienceCreateManyhighlightsInput | String No

ExperienceUpdateWithoutOrganizationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
positionName String | StringFieldUpdateOperationsInput No
startDate DateTime | DateTimeFieldUpdateOperationsInput No
type ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null Yes
highlights ExperienceUpdatehighlightsInput | String No
user UserUpdateOneRequiredWithoutExperiencesInput No

ExperienceUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
positionName String | StringFieldUpdateOperationsInput No
startDate DateTime | DateTimeFieldUpdateOperationsInput No
type ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No
highlights ExperienceUpdatehighlightsInput | String No

Output Types

Account

Name Type Nullable
access_token String No
expires_at Int No
id String Yes
id_token String No
provider String Yes
providerAccountId String Yes
oauth_token String No
oauth_token_secret String No
refresh_token String No
scope String No
session_state String No
token_type String No
type String Yes
user User Yes
userId String Yes

Session

Name Type Nullable
expires DateTime Yes
id String Yes
sessionToken String Yes
user User Yes
userId String Yes

VerificationToken

Name Type Nullable
expires DateTime Yes
identifier String Yes
token String Yes

User

Name Type Nullable
accounts Account[] No
activities UserActivity[] No
chats ChatsOnUsers[] No
chatMessages ChatMessage[] No
comments Comment[] No
createdAt DateTime Yes
description String No
desiredSkills DesiredSkillsOnUsers[] No
email String Yes
emailVerified DateTime No
experiences Experience[] No
followedBy FollowUser[] No
followingSkill FollowSkill[] No
followingUser FollowUser[] No
friendedBy Friendship[] No
friending Friendship[] No
id String Yes
image String No
name String Yes
posts Post[] No
repositories Repository[] No
sessions Session[] No
skills SkillsOnUsers[] No
updatedAt DateTime Yes
upvotedComments CommentUpvoter[] No
upvotedPosts PostUpvoter[] No
_count UserCountOutputType Yes

UserActivity

Name Type Nullable
id String Yes
comment Comment No
commentId String No
createdAt DateTime Yes
follow Follow No
followId String No
friendship Friendship No
friendshipId String No
post Post No
postId String No
type UserActivityType Yes
user User Yes
userId String Yes

Friendship

Name Type Nullable
id String Yes
activities UserActivity[] No
friender User Yes
frienderId String Yes
friending User Yes
friendingId String Yes
rejected Boolean Yes
updatedAt DateTime Yes
_count FriendshipCountOutputType Yes

Follow

Name Type Nullable
id String Yes
activities UserActivity[] No
createdAt DateTime Yes
followingSkill FollowSkill No
followingUser FollowUser No
_count FollowCountOutputType Yes

FollowUser

Name Type Nullable
id String Yes
follow Follow Yes
followId String Yes
follower User Yes
followerId String Yes
following User Yes
followingId String Yes

FollowSkill

Name Type Nullable
id String Yes
follow Follow Yes
followId String Yes
follower User Yes
followerId String Yes
following Skill Yes
followingId String Yes

Chat

Name Type Nullable
id String Yes
messages ChatMessage[] No
users ChatsOnUsers[] No
_count ChatCountOutputType Yes

ChatMessage

Name Type Nullable
id String Yes
chat Chat Yes
chatId String Yes
content Json Yes
sender User Yes
senderId String Yes

ChatsOnUsers

Name Type Nullable
id String Yes
chat Chat Yes
chatId String Yes
user User Yes
userId String Yes

Post

Name Type Nullable
activities UserActivity[] No
author User Yes
authorName String Yes
comments Comment[] No
content Json No
createdAt DateTime Yes
description String No
id String Yes
images PostImage[] No
publishedAt DateTime No
readTime Int No
skills SkillsOnPosts[] No
title String No
thumbnailUrl String No
updatedAt DateTime Yes
upvoters PostUpvoter[] No
urlSlug String Yes
_count PostCountOutputType Yes

PostUpvoter

Name Type Nullable
id String Yes
post Post Yes
postId String Yes
upvote Boolean Yes
user User Yes
userId String Yes

PostImage

Name Type Nullable
id String Yes
post Post Yes
postId String Yes
url String Yes
createdAt DateTime Yes

Comment

Name Type Nullable
id String Yes
activities UserActivity[] No
author User Yes
authorId String Yes
content Json No
createdAt DateTime Yes
parent Comment No
parentId String No
post Post No
postId String No
replies Comment[] No
updatedAt DateTime Yes
upvoters CommentUpvoter[] No
_count CommentCountOutputType Yes

CommentUpvoter

Name Type Nullable
id String Yes
comment Comment Yes
commentId String Yes
upvote Boolean Yes
user User Yes
userId String Yes

Skill

Name Type Nullable
id String Yes
name String Yes
owner String Yes
users SkillsOnUsers[] No
desiringUsers DesiredSkillsOnUsers[] No
posts SkillsOnPosts[] No
repositories SkillsOnRepositories[] No
followedBy FollowSkill[] No
_count SkillCountOutputType Yes

SkillsOnPosts

Name Type Nullable
id String Yes
post Post Yes
postId String Yes
skill Skill Yes
skillId String Yes

SkillsOnUsers

Name Type Nullable
id String Yes
skill Skill Yes
skillId String Yes
user User Yes
userId String Yes

DesiredSkillsOnUsers

Name Type Nullable
id String Yes
skill Skill Yes
skillId String Yes
user User Yes
userId String Yes

Repository

Name Type Nullable
id String Yes
name String Yes
skills SkillsOnRepositories[] No
user User Yes
owner String Yes
_count RepositoryCountOutputType Yes

SkillsOnRepositories

Name Type Nullable
id String Yes
skill Skill Yes
skillId String Yes
repository Repository Yes
repositoryId String Yes

Organization

Name Type Nullable
id String Yes
name String Yes
experiences Experience[] No
_count OrganizationCountOutputType Yes

Experience

Name Type Nullable
id String Yes
endDate DateTime No
highlights String No
location String No
organization Organization Yes
organizationName String Yes
positionName String Yes
startDate DateTime Yes
type ExperienceType No
user User Yes
userId String Yes


AccountGroupByOutputType

Name Type Nullable
access_token String No
expires_at Int No
id String Yes
id_token String No
provider String Yes
providerAccountId String Yes
oauth_token String No
oauth_token_secret String No
refresh_token String No
scope String No
session_state String No
token_type String No
type String Yes
userId String Yes
_count AccountCountAggregateOutputType No
_avg AccountAvgAggregateOutputType No
_sum AccountSumAggregateOutputType No
_min AccountMinAggregateOutputType No
_max AccountMaxAggregateOutputType No

AggregateSession

Name Type Nullable
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No

SessionGroupByOutputType

Name Type Nullable
expires DateTime Yes
id String Yes
sessionToken String Yes
userId String Yes
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No


VerificationTokenGroupByOutputType

Name Type Nullable
expires DateTime Yes
identifier String Yes
token String Yes
_count VerificationTokenCountAggregateOutputType No
_min VerificationTokenMinAggregateOutputType No
_max VerificationTokenMaxAggregateOutputType No

AggregateUser

Name Type Nullable
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

UserGroupByOutputType

Name Type Nullable
createdAt DateTime Yes
description String No
email String Yes
emailVerified DateTime No
id String Yes
image String No
name String Yes
updatedAt DateTime Yes
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

AggregateUserActivity

Name Type Nullable
_count UserActivityCountAggregateOutputType No
_min UserActivityMinAggregateOutputType No
_max UserActivityMaxAggregateOutputType No

UserActivityGroupByOutputType

Name Type Nullable
id String Yes
commentId String No
createdAt DateTime Yes
followId String No
friendshipId String No
postId String No
type UserActivityType Yes
userId String Yes
_count UserActivityCountAggregateOutputType No
_min UserActivityMinAggregateOutputType No
_max UserActivityMaxAggregateOutputType No

AggregateFriendship

Name Type Nullable
_count FriendshipCountAggregateOutputType No
_min FriendshipMinAggregateOutputType No
_max FriendshipMaxAggregateOutputType No

FriendshipGroupByOutputType

Name Type Nullable
id String Yes
frienderId String Yes
friendingId String Yes
rejected Boolean Yes
updatedAt DateTime Yes
_count FriendshipCountAggregateOutputType No
_min FriendshipMinAggregateOutputType No
_max FriendshipMaxAggregateOutputType No

AggregateFollow

Name Type Nullable
_count FollowCountAggregateOutputType No
_min FollowMinAggregateOutputType No
_max FollowMaxAggregateOutputType No

FollowGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
_count FollowCountAggregateOutputType No
_min FollowMinAggregateOutputType No
_max FollowMaxAggregateOutputType No

AggregateFollowUser

Name Type Nullable
_count FollowUserCountAggregateOutputType No
_min FollowUserMinAggregateOutputType No
_max FollowUserMaxAggregateOutputType No

FollowUserGroupByOutputType

Name Type Nullable
id String Yes
followId String Yes
followerId String Yes
followingId String Yes
_count FollowUserCountAggregateOutputType No
_min FollowUserMinAggregateOutputType No
_max FollowUserMaxAggregateOutputType No

AggregateFollowSkill

Name Type Nullable
_count FollowSkillCountAggregateOutputType No
_min FollowSkillMinAggregateOutputType No
_max FollowSkillMaxAggregateOutputType No

FollowSkillGroupByOutputType

Name Type Nullable
id String Yes
followId String Yes
followerId String Yes
followingId String Yes
_count FollowSkillCountAggregateOutputType No
_min FollowSkillMinAggregateOutputType No
_max FollowSkillMaxAggregateOutputType No

AggregateChat

Name Type Nullable
_count ChatCountAggregateOutputType No
_min ChatMinAggregateOutputType No
_max ChatMaxAggregateOutputType No

ChatGroupByOutputType

Name Type Nullable
id String Yes
_count ChatCountAggregateOutputType No
_min ChatMinAggregateOutputType No
_max ChatMaxAggregateOutputType No

AggregateChatMessage

Name Type Nullable
_count ChatMessageCountAggregateOutputType No
_min ChatMessageMinAggregateOutputType No
_max ChatMessageMaxAggregateOutputType No

ChatMessageGroupByOutputType

Name Type Nullable
id String Yes
chatId String Yes
content Json Yes
senderId String Yes
_count ChatMessageCountAggregateOutputType No
_min ChatMessageMinAggregateOutputType No
_max ChatMessageMaxAggregateOutputType No

AggregateChatsOnUsers

Name Type Nullable
_count ChatsOnUsersCountAggregateOutputType No
_min ChatsOnUsersMinAggregateOutputType No
_max ChatsOnUsersMaxAggregateOutputType No

ChatsOnUsersGroupByOutputType

Name Type Nullable
id String Yes
chatId String Yes
userId String Yes
_count ChatsOnUsersCountAggregateOutputType No
_min ChatsOnUsersMinAggregateOutputType No
_max ChatsOnUsersMaxAggregateOutputType No


PostGroupByOutputType

Name Type Nullable
authorName String Yes
content Json No
createdAt DateTime Yes
description String No
id String Yes
publishedAt DateTime No
readTime Int No
title String No
thumbnailUrl String No
updatedAt DateTime Yes
urlSlug String Yes
_count PostCountAggregateOutputType No
_avg PostAvgAggregateOutputType No
_sum PostSumAggregateOutputType No
_min PostMinAggregateOutputType No
_max PostMaxAggregateOutputType No

AggregatePostUpvoter

Name Type Nullable
_count PostUpvoterCountAggregateOutputType No
_min PostUpvoterMinAggregateOutputType No
_max PostUpvoterMaxAggregateOutputType No

PostUpvoterGroupByOutputType

Name Type Nullable
id String Yes
postId String Yes
upvote Boolean Yes
userId String Yes
_count PostUpvoterCountAggregateOutputType No
_min PostUpvoterMinAggregateOutputType No
_max PostUpvoterMaxAggregateOutputType No

AggregatePostImage

Name Type Nullable
_count PostImageCountAggregateOutputType No
_min PostImageMinAggregateOutputType No
_max PostImageMaxAggregateOutputType No

PostImageGroupByOutputType

Name Type Nullable
id String Yes
postId String Yes
url String Yes
createdAt DateTime Yes
_count PostImageCountAggregateOutputType No
_min PostImageMinAggregateOutputType No
_max PostImageMaxAggregateOutputType No

AggregateComment

Name Type Nullable
_count CommentCountAggregateOutputType No
_min CommentMinAggregateOutputType No
_max CommentMaxAggregateOutputType No

CommentGroupByOutputType

Name Type Nullable
id String Yes
authorId String Yes
content Json No
createdAt DateTime Yes
parentId String No
postId String No
updatedAt DateTime Yes
_count CommentCountAggregateOutputType No
_min CommentMinAggregateOutputType No
_max CommentMaxAggregateOutputType No


CommentUpvoterGroupByOutputType

Name Type Nullable
id String Yes
commentId String Yes
upvote Boolean Yes
userId String Yes
_count CommentUpvoterCountAggregateOutputType No
_min CommentUpvoterMinAggregateOutputType No
_max CommentUpvoterMaxAggregateOutputType No

AggregateSkill

Name Type Nullable
_count SkillCountAggregateOutputType No
_min SkillMinAggregateOutputType No
_max SkillMaxAggregateOutputType No

SkillGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
owner String Yes
_count SkillCountAggregateOutputType No
_min SkillMinAggregateOutputType No
_max SkillMaxAggregateOutputType No

AggregateSkillsOnPosts

Name Type Nullable
_count SkillsOnPostsCountAggregateOutputType No
_min SkillsOnPostsMinAggregateOutputType No
_max SkillsOnPostsMaxAggregateOutputType No

SkillsOnPostsGroupByOutputType

Name Type Nullable
id String Yes
postId String Yes
skillId String Yes
_count SkillsOnPostsCountAggregateOutputType No
_min SkillsOnPostsMinAggregateOutputType No
_max SkillsOnPostsMaxAggregateOutputType No

AggregateSkillsOnUsers

Name Type Nullable
_count SkillsOnUsersCountAggregateOutputType No
_min SkillsOnUsersMinAggregateOutputType No
_max SkillsOnUsersMaxAggregateOutputType No

SkillsOnUsersGroupByOutputType

Name Type Nullable
id String Yes
skillId String Yes
userId String Yes
_count SkillsOnUsersCountAggregateOutputType No
_min SkillsOnUsersMinAggregateOutputType No
_max SkillsOnUsersMaxAggregateOutputType No


DesiredSkillsOnUsersGroupByOutputType

Name Type Nullable
id String Yes
skillId String Yes
userId String Yes
_count DesiredSkillsOnUsersCountAggregateOutputType No
_min DesiredSkillsOnUsersMinAggregateOutputType No
_max DesiredSkillsOnUsersMaxAggregateOutputType No

AggregateRepository

Name Type Nullable
_count RepositoryCountAggregateOutputType No
_min RepositoryMinAggregateOutputType No
_max RepositoryMaxAggregateOutputType No

RepositoryGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
owner String Yes
_count RepositoryCountAggregateOutputType No
_min RepositoryMinAggregateOutputType No
_max RepositoryMaxAggregateOutputType No


SkillsOnRepositoriesGroupByOutputType

Name Type Nullable
id String Yes
skillId String Yes
repositoryId String Yes
_count SkillsOnRepositoriesCountAggregateOutputType No
_min SkillsOnRepositoriesMinAggregateOutputType No
_max SkillsOnRepositoriesMaxAggregateOutputType No

AggregateOrganization

Name Type Nullable
_count OrganizationCountAggregateOutputType No
_min OrganizationMinAggregateOutputType No
_max OrganizationMaxAggregateOutputType No

OrganizationGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
_count OrganizationCountAggregateOutputType No
_min OrganizationMinAggregateOutputType No
_max OrganizationMaxAggregateOutputType No

AggregateExperience

Name Type Nullable
_count ExperienceCountAggregateOutputType No
_min ExperienceMinAggregateOutputType No
_max ExperienceMaxAggregateOutputType No

ExperienceGroupByOutputType

Name Type Nullable
id String Yes
endDate DateTime No
highlights String No
location String No
organizationName String Yes
positionName String Yes
startDate DateTime Yes
type ExperienceType No
userId String Yes
_count ExperienceCountAggregateOutputType No
_min ExperienceMinAggregateOutputType No
_max ExperienceMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

AccountCountAggregateOutputType

Name Type Nullable
access_token Int Yes
expires_at Int Yes
id Int Yes
id_token Int Yes
provider Int Yes
providerAccountId Int Yes
oauth_token Int Yes
oauth_token_secret Int Yes
refresh_token Int Yes
scope Int Yes
session_state Int Yes
token_type Int Yes
type Int Yes
userId Int Yes
_all Int Yes

AccountAvgAggregateOutputType

Name Type Nullable
expires_at Float No

AccountSumAggregateOutputType

Name Type Nullable
expires_at Int No

AccountMinAggregateOutputType

Name Type Nullable
access_token String No
expires_at Int No
id String No
id_token String No
provider String No
providerAccountId String No
oauth_token String No
oauth_token_secret String No
refresh_token String No
scope String No
session_state String No
token_type String No
type String No
userId String No

AccountMaxAggregateOutputType

Name Type Nullable
access_token String No
expires_at Int No
id String No
id_token String No
provider String No
providerAccountId String No
oauth_token String No
oauth_token_secret String No
refresh_token String No
scope String No
session_state String No
token_type String No
type String No
userId String No

SessionCountAggregateOutputType

Name Type Nullable
expires Int Yes
id Int Yes
sessionToken Int Yes
userId Int Yes
_all Int Yes

SessionMinAggregateOutputType

Name Type Nullable
expires DateTime No
id String No
sessionToken String No
userId String No

SessionMaxAggregateOutputType

Name Type Nullable
expires DateTime No
id String No
sessionToken String No
userId String No

VerificationTokenCountAggregateOutputType

Name Type Nullable
expires Int Yes
identifier Int Yes
token Int Yes
_all Int Yes

VerificationTokenMinAggregateOutputType

Name Type Nullable
expires DateTime No
identifier String No
token String No

VerificationTokenMaxAggregateOutputType

Name Type Nullable
expires DateTime No
identifier String No
token String No

UserCountOutputType

Name Type Nullable
accounts Int Yes
activities Int Yes
chats Int Yes
chatMessages Int Yes
comments Int Yes
desiredSkills Int Yes
experiences Int Yes
followedBy Int Yes
followingSkill Int Yes
followingUser Int Yes
friendedBy Int Yes
friending Int Yes
posts Int Yes
repositories Int Yes
sessions Int Yes
skills Int Yes
upvotedComments Int Yes
upvotedPosts Int Yes

UserCountAggregateOutputType

Name Type Nullable
createdAt Int Yes
description Int Yes
email Int Yes
emailVerified Int Yes
id Int Yes
image Int Yes
name Int Yes
updatedAt Int Yes
_all Int Yes

UserMinAggregateOutputType

Name Type Nullable
createdAt DateTime No
description String No
email String No
emailVerified DateTime No
id String No
image String No
name String No
updatedAt DateTime No

UserMaxAggregateOutputType

Name Type Nullable
createdAt DateTime No
description String No
email String No
emailVerified DateTime No
id String No
image String No
name String No
updatedAt DateTime No

UserActivityCountAggregateOutputType

Name Type Nullable
id Int Yes
commentId Int Yes
createdAt Int Yes
followId Int Yes
friendshipId Int Yes
postId Int Yes
type Int Yes
userId Int Yes
_all Int Yes

UserActivityMinAggregateOutputType

Name Type Nullable
id String No
commentId String No
createdAt DateTime No
followId String No
friendshipId String No
postId String No
type UserActivityType No
userId String No

UserActivityMaxAggregateOutputType

Name Type Nullable
id String No
commentId String No
createdAt DateTime No
followId String No
friendshipId String No
postId String No
type UserActivityType No
userId String No

FriendshipCountOutputType

Name Type Nullable
activities Int Yes

FriendshipCountAggregateOutputType

Name Type Nullable
id Int Yes
frienderId Int Yes
friendingId Int Yes
rejected Int Yes
updatedAt Int Yes
_all Int Yes

FriendshipMinAggregateOutputType

Name Type Nullable
id String No
frienderId String No
friendingId String No
rejected Boolean No
updatedAt DateTime No

FriendshipMaxAggregateOutputType

Name Type Nullable
id String No
frienderId String No
friendingId String No
rejected Boolean No
updatedAt DateTime No

FollowCountOutputType

Name Type Nullable
activities Int Yes

FollowCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
_all Int Yes

FollowMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No

FollowMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No

FollowUserCountAggregateOutputType

Name Type Nullable
id Int Yes
followId Int Yes
followerId Int Yes
followingId Int Yes
_all Int Yes

FollowUserMinAggregateOutputType

Name Type Nullable
id String No
followId String No
followerId String No
followingId String No

FollowUserMaxAggregateOutputType

Name Type Nullable
id String No
followId String No
followerId String No
followingId String No

FollowSkillCountAggregateOutputType

Name Type Nullable
id Int Yes
followId Int Yes
followerId Int Yes
followingId Int Yes
_all Int Yes

FollowSkillMinAggregateOutputType

Name Type Nullable
id String No
followId String No
followerId String No
followingId String No

FollowSkillMaxAggregateOutputType

Name Type Nullable
id String No
followId String No
followerId String No
followingId String No

ChatCountOutputType

Name Type Nullable
messages Int Yes
users Int Yes

ChatCountAggregateOutputType

Name Type Nullable
id Int Yes
_all Int Yes

ChatMinAggregateOutputType

Name Type Nullable
id String No

ChatMaxAggregateOutputType

Name Type Nullable
id String No

ChatMessageCountAggregateOutputType

Name Type Nullable
id Int Yes
chatId Int Yes
content Int Yes
senderId Int Yes
_all Int Yes

ChatMessageMinAggregateOutputType

Name Type Nullable
id String No
chatId String No
senderId String No

ChatMessageMaxAggregateOutputType

Name Type Nullable
id String No
chatId String No
senderId String No

ChatsOnUsersCountAggregateOutputType

Name Type Nullable
id Int Yes
chatId Int Yes
userId Int Yes
_all Int Yes

ChatsOnUsersMinAggregateOutputType

Name Type Nullable
id String No
chatId String No
userId String No

ChatsOnUsersMaxAggregateOutputType

Name Type Nullable
id String No
chatId String No
userId String No

PostCountOutputType

Name Type Nullable
activities Int Yes
comments Int Yes
images Int Yes
skills Int Yes
upvoters Int Yes

PostCountAggregateOutputType

Name Type Nullable
authorName Int Yes
content Int Yes
createdAt Int Yes
description Int Yes
id Int Yes
publishedAt Int Yes
readTime Int Yes
title Int Yes
thumbnailUrl Int Yes
updatedAt Int Yes
urlSlug Int Yes
_all Int Yes

PostAvgAggregateOutputType

Name Type Nullable
readTime Float No

PostSumAggregateOutputType

Name Type Nullable
readTime Int No

PostMinAggregateOutputType

Name Type Nullable
authorName String No
createdAt DateTime No
description String No
id String No
publishedAt DateTime No
readTime Int No
title String No
thumbnailUrl String No
updatedAt DateTime No
urlSlug String No

PostMaxAggregateOutputType

Name Type Nullable
authorName String No
createdAt DateTime No
description String No
id String No
publishedAt DateTime No
readTime Int No
title String No
thumbnailUrl String No
updatedAt DateTime No
urlSlug String No

PostUpvoterCountAggregateOutputType

Name Type Nullable
id Int Yes
postId Int Yes
upvote Int Yes
userId Int Yes
_all Int Yes

PostUpvoterMinAggregateOutputType

Name Type Nullable
id String No
postId String No
upvote Boolean No
userId String No

PostUpvoterMaxAggregateOutputType

Name Type Nullable
id String No
postId String No
upvote Boolean No
userId String No

PostImageCountAggregateOutputType

Name Type Nullable
id Int Yes
postId Int Yes
url Int Yes
createdAt Int Yes
_all Int Yes

PostImageMinAggregateOutputType

Name Type Nullable
id String No
postId String No
url String No
createdAt DateTime No

PostImageMaxAggregateOutputType

Name Type Nullable
id String No
postId String No
url String No
createdAt DateTime No

CommentCountOutputType

Name Type Nullable
activities Int Yes
replies Int Yes
upvoters Int Yes

CommentCountAggregateOutputType

Name Type Nullable
id Int Yes
authorId Int Yes
content Int Yes
createdAt Int Yes
parentId Int Yes
postId Int Yes
updatedAt Int Yes
_all Int Yes

CommentMinAggregateOutputType

Name Type Nullable
id String No
authorId String No
createdAt DateTime No
parentId String No
postId String No
updatedAt DateTime No

CommentMaxAggregateOutputType

Name Type Nullable
id String No
authorId String No
createdAt DateTime No
parentId String No
postId String No
updatedAt DateTime No

CommentUpvoterCountAggregateOutputType

Name Type Nullable
id Int Yes
commentId Int Yes
upvote Int Yes
userId Int Yes
_all Int Yes

CommentUpvoterMinAggregateOutputType

Name Type Nullable
id String No
commentId String No
upvote Boolean No
userId String No

CommentUpvoterMaxAggregateOutputType

Name Type Nullable
id String No
commentId String No
upvote Boolean No
userId String No

SkillCountOutputType

Name Type Nullable
users Int Yes
desiringUsers Int Yes
posts Int Yes
repositories Int Yes
followedBy Int Yes

SkillCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
owner Int Yes
_all Int Yes

SkillMinAggregateOutputType

Name Type Nullable
id String No
name String No
owner String No

SkillMaxAggregateOutputType

Name Type Nullable
id String No
name String No
owner String No

SkillsOnPostsCountAggregateOutputType

Name Type Nullable
id Int Yes
postId Int Yes
skillId Int Yes
_all Int Yes

SkillsOnPostsMinAggregateOutputType

Name Type Nullable
id String No
postId String No
skillId String No

SkillsOnPostsMaxAggregateOutputType

Name Type Nullable
id String No
postId String No
skillId String No

SkillsOnUsersCountAggregateOutputType

Name Type Nullable
id Int Yes
skillId Int Yes
userId Int Yes
_all Int Yes

SkillsOnUsersMinAggregateOutputType

Name Type Nullable
id String No
skillId String No
userId String No

SkillsOnUsersMaxAggregateOutputType

Name Type Nullable
id String No
skillId String No
userId String No

DesiredSkillsOnUsersCountAggregateOutputType

Name Type Nullable
id Int Yes
skillId Int Yes
userId Int Yes
_all Int Yes

DesiredSkillsOnUsersMinAggregateOutputType

Name Type Nullable
id String No
skillId String No
userId String No

DesiredSkillsOnUsersMaxAggregateOutputType

Name Type Nullable
id String No
skillId String No
userId String No

RepositoryCountOutputType

Name Type Nullable
skills Int Yes

RepositoryCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
owner Int Yes
_all Int Yes

RepositoryMinAggregateOutputType

Name Type Nullable
id String No
name String No
owner String No

RepositoryMaxAggregateOutputType

Name Type Nullable
id String No
name String No
owner String No

SkillsOnRepositoriesCountAggregateOutputType

Name Type Nullable
id Int Yes
skillId Int Yes
repositoryId Int Yes
_all Int Yes

SkillsOnRepositoriesMinAggregateOutputType

Name Type Nullable
id String No
skillId String No
repositoryId String No

SkillsOnRepositoriesMaxAggregateOutputType

Name Type Nullable
id String No
skillId String No
repositoryId String No

OrganizationCountOutputType

Name Type Nullable
experiences Int Yes

OrganizationCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
_all Int Yes

OrganizationMinAggregateOutputType

Name Type Nullable
id String No
name String No

OrganizationMaxAggregateOutputType

Name Type Nullable
id String No
name String No

ExperienceCountAggregateOutputType

Name Type Nullable
id Int Yes
endDate Int Yes
highlights Int Yes
location Int Yes
organizationName Int Yes
positionName Int Yes
startDate Int Yes
type Int Yes
userId Int Yes
_all Int Yes

ExperienceMinAggregateOutputType

Name Type Nullable
id String No
endDate DateTime No
location String No
organizationName String No
positionName String No
startDate DateTime No
type ExperienceType No
userId String No

ExperienceMaxAggregateOutputType

Name Type Nullable
id String No
endDate DateTime No
location String No
organizationName String No
positionName String No
startDate DateTime No
type ExperienceType No
userId String No